-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (105 loc) · 4.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!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>Document</title><link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="header">
<div class="banner"><img src="./img/banner.jpg" alt="a random place" class="img-fluid"></div>
<div class="logo"><img src="./img/logo.png" alt="logo"></div>
<ul class="menu">
<li>
<a href="">
Home
</a>
</li>
<li>
<a href="javascript:dla()">
Pages
</a>
</li>
<li>
<a href="javascript:dla()">
Destination
</a>
</li>
<li>
<a href="javascript:fb()">
Blog
</a>
</li>
<li>
<a href="javascript:fb()">
Landing
</a>
</li>
<li>
<a href="javascript:fb()">
Shop
</a>
</li>
</ul>
</div>
<div class="main">
<div class="desc">
<div class="dleft"><h2>Exploring the Suburb Since 2019</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nisi maiores exercitationem eligendi quas voluptatibus consectetur tempore sapiente? Architecto veritatis fugit qui non, itaque unde accusantium, facilis et velit, porro repellat!</p>
<a href="javascript:dla()">Read more</a></div><div class="dright"> <img src="./img/img1.jpg" alt="girl with an unbrella"></div>
</div>
<div class="featured">
<h2>featured blog posts</h2>
<div class="featured-post">
<div class="post">
<img src="./img/trip1.jpg" class="img-fluid" alt="">
<div class="detail">
<h2>BANFF NATIONAL PARK</h2>
<p>$546.00</p>
<a href="javascript:dla()">book this tour</a>
</div>
</div>
<div class="post">
<img src="./img/trip2.jpg" class="img-fluid" alt="">
<div class="detail">
<h2>???</h2>
<p>$???</p>
<a href="javascript:fb()">book this tour</a>
</div>
</div>
<div class="post">
<img src="./img/trip3.jpg" class="img-fluid" alt="">
<div class="detail">
<h2>???</h2>
<p>$???</p>
<a href="javascript:fb()">book this tour</a>
</div>
</div>
</div>
<div class="footer">
<div class="footer-left">
<p>(c) 2021 Qode Interactive, All Rights Reserved</p>
</div>
<div class="footer-right">
<form action="">
<input type="email" name="" id="" required placeholder="Email Address">
<button type="submit">Subscribe</button>
</form>
</div>
</div>
</div>
<script>
function fb(){
alert("Why would you want to use an unfinished part of the site, anyway?")
}
function dla(){
alert("Why would you want to click a link that don't lead anywhere, anyway?")
}
</script>
</body>
</html>