-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<img src="img/logo.png" alt="Travelo" class="logo">
<ul>
<li>
<a href="#">Login</a>
</li>
<li>
<a href="#">Sign up</a>
</li>
<li class="search">
<a href="#">
<i class="fa-solid fa-magnifying-glass"></i>
</a>
</li>
<li class="hamburger">
<a href="#">
<div class="bar"></div>
</a>
</li>
</ul>
</nav>
</header>
<main>
</main>
</body>
</html>