-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
164 lines (144 loc) · 6.33 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/icon.png">
<title>HomeTown</title>
<!-- ||| google fonts link ||| -->
<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=Kanit:wght@300;400&display=swap" rel="stylesheet">
<!-- ||| css link ||| -->
<link rel="stylesheet" href="styles.css">
<!--Icon packs-->
<script src="https://kit.fontawesome.com/7f33252b4f.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="nav">
<header>
<nav class="fixed-header" >
<img src="images/logo1.png" alt="" class="logo">
<ul>
<li> <a href="#">Home</a></li>
<li> <a href="#">Destinations</a></li>
<li> <a href="#">Holidays</a></li>
<li> <a href="#">Services</a></li>
<li> <a href="#">Contact Us</a></li>
<i class="fa fa-user" id="icon" onclick="toggleIconMenu()"></i>
</ul>
<button class="btn"><img src="images/icon.png" alt="">Book</button>
<div class="dropdown-menu" id="dropdownMenu">
<div class="arrow"></div>
<a href="Authentication/login.html">Login</a>
<a href="Authentication/signUp.html">Sign Up</a>
</div>
</nav>
<div class="toggle">
<i class="fa-solid fa-bars"></i>
</div>
<div class="dropdown">
<li> <a href="#">Home</a></li>
<li> <a href="#">Destinations</a></li>
<li> <a href="#">Holidays</a></li>
<li> <a href="#">Services</a></li>
<li> <a href="#">Contact Us</a></li>
<li><button class="btn"><img src="images/icon.png" alt="">Book</button></li>
</div>
<div class="account" >
<a href="Authentication/login.html">Login</a>
<a href="Authentication/signUp.html">Sign Up</a>
</div>
</header>
<div class="header-content">
<h1>Amazing places to explore in <b style="color:#5aa731 ;">kenya.</b> </h1>
<p>From breathtaking natural wonders to vibrant cities pulsating with culture, our curated collection of amazing places will ignite your wanderlust and leave you yearning for new experiences.</p>
<form action="" class="Search">
<input type="text" placeholder="Search place">
<button type="submit" class="btn1"><i class="fa fa-search" aria-hidden="true"></i></button>
</form>
</div>
</div>
<div class="content">
<section class="activities">
<h1>Top three activities to do at Nairobi</h1>
<div class="theatre">
<div class="card">
<img src="images/home5.jpg" alt="">
<h2>Attend a show or a concert</h2>
<p>The Torshov Theatre is a great place to spend your night out. You will learn more about our
culture.
</p>
</div>
<div class="card">
<img src="images/home6.jpg" alt="">
<h2>Go for a piknic in the local park</h2>
<p>The Torshov Park is perfect for piknic, getting some tan, or just chilling out.</p>
</div>
<div class="card">
<img src="images/home7.jpg" alt="">
<h2>Play sports at the Lilleborg field</h2>
<p>Play volleyball, football, basket ball or lift some weights.</p>
</div>
</div>
</section>
<section class="guide">
<div class="guide--card">
<div class="profile-pic"></div>
<div class="guide--desc">
<h2>Your Guide</h2>
<p>“I have lived at Torshov for over 30 years, so I can show you all of its best parts and hidden
secrets.”</p>
<h4>Cornelius Emase</h4>
</div>
</div>
</section>
</div>
<footer>
<div class="row">
<div class="col">
<img src="images/logo.png" class="logo">
<p>Start Your Next Adventure Today with Home town travel agency.</p>
</div>
<div class="col">
<h3>Office <div class="underline"><span></span></div>
</h3>
<p>Nairobi</p>
<p>GTC TOWERS, 00100</p>
<p class="email"> <a href="">[email protected]</a></p>
<h4>+254 701372889</h4>
</div>
<div class="col">
<h3>Links <div class="underline"><span></span></div>
</h3>
<ul>
<li> <a href="">Home</a></li>
<li> <a href="">Services</a></li>
<li> <a href="">About us</a></li>
<li> <a href="">Features</a></li>
<li> <a href="">Contact us</a></li>
</ul>
</div>
<div class="col">
<h3>Newsletter <div class="underline"><span></span></div>
</h3>
<form action="">
<i class="far fa-envelope"></i>
<input type="email" placeholder="Enter your Email" required>
<button type="submit"><i class="fas fa-arrow-right"></i></button>
</form>
<div class="social-icons">
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-whatsapp"></i>
<i class="fab fa-instagram"></i>
</div>
</div>
</div>
<hr>
<p class="copyright">Home Town <span id="currYear"></span> - All Rights Reserved </p>
</footer>
<!-- external main js link -->
<script src="main.js"></script>
</body>
</html>