-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (73 loc) · 3.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotel Esmeralda</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<div class="left">
<h1>Hotel Esmeralda</h1>
</div>
<ul class="right">
<li><a href="./Pages/blog.html">Blog</a></li>
<li><a href="./Pages/store.html">Store</a></li>
<li><a href="./Pages/contact.html">Contact</a></li>
</ul>
</div>
<div class="intro">
<div class="intro-container">
<h1 class="intro-header">This website is awesome</h1>
<p class="intro-text">This website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast.</p>
<button class="button-intro">Sign up</button>
</div>
<div class="placeholder">
<p id="placeholder-text">This is a placeholder for an image</p>
</div>
</div>
<div class="container">
<div class="title">
<h3>Some random information</h3>
</div>
<div class="image-container">
<div class="info">
<img src="/home/odinstudent/repos/Landing-Page/Landing-Page/Images/bird.jpg" alt="bird">
<div class="info-text">this is some subtext under an illustration or image</div>
</div>
<div class="info">
<img src="/home/odinstudent/repos/Landing-Page/Landing-Page/Images/landscape.jpg" alt="landscape">
<div class="info-text">this is some subtext under an illustration or image</div>
</div>
<div class="info">
<img src="/home/odinstudent/repos/Landing-Page/Landing-Page/Images/naxos.jpg" alt="naxos">
<div class="info-text">this is some subtext under an illustration or image</div>
</div>
<div class="info">
<img src="/home/odinstudent/repos/Landing-Page/Landing-Page/Images/sail.jpg" alt="sail">
<div class="info-text">this is some subtext under an illustration or image</div>
</div>
</div>
</div>
<div class="quote-container">
<div class="quote">
<p class="text"><em>A journey of a thousand miles begins with a single step</em></p>
<p class="author"><b>-Lao Tzu</b></p>
</div>
</div>
<div class="sign-up">
<div class="action">
<div class="left">
<p class="action-text"><b>Call to action! It's time!</b></p>
<p class="action-text">Sign up for our product by clicking that button right over there!</p>
</div>
<div class="right"></div>
<button class="button-end">Sign up</button>
</div>
</div>
</div>
<div class="footer">Copyright © The Odin Project 2023</div>
</body>
</html>