-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.17 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
<!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" />
<!-- costum css file link -->
<link rel="stylesheet" href="assets/style.css" />
<!-- ofline icon fontawesome -->
<link rel="stylesheet" href="assets/fontawesome-6.2.1/css/all.min.css" />
<title>My Travel Agencey</title>
</head>
<body>
<!-- header section starts -->
<header>
<div id="menu-bar" class="fa-solid fa-bars"></div>
<a href="" class="logo"><span>T</span>ravel</a>
<div class="navbar">
<a href="#home">home</a>
<a href="#book">book</a>
<a href="#packages">packages</a>
<a href="#services">services</a>
<a href="#gallery">gallery</a>
<a href="#review">review</a>
<a href="#contact">contact</a>
<a href="contact.html" target="_blank">contact</a>
</div>
<div class="icon">
<i class="fa-solid fa-magnifying-glass" id="search-btn"></i>
<i class="fa-solid fa-user" id="login-btn"></i>
</div>
<form action="" class="search-bar-container">
<input type="search" id="search-bar" placeholder="search here..." />
<label for="search-bar" class="fa-solid fa-magnifying-glass"></label>
</form>
</header>
<!-- header section ends -->
<!-- login form container -->
<div class="login-form-container">
<i class="fa-solid fa-circle-xmark" id="form-close"></i>
<form action="">
<h3>Login</h3>
<input type="email" class="box" placeholder="enter your email" />
<input type="password" class="box" placeholder="enter your password" />
<input type="submit" value="logi now" class="btn" />
<input type="checkbox" id="remember" />
<label for="remember">remember me</label>
<p>forgot password? <a href="#">Click here</a></p>
<p>don't have any account <a href="#">register now</a></p>
</form>
</div>
<!-- home section starts -->
<!-- home section ends -->
<!-- costum js file link -->
<script src="assets/script.js"></script>
</body>
</html>