-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 1.06 KB
/
index.html
File metadata and controls
36 lines (35 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>HTML CSS RESPONSIVE WEBSITE</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="container">
<header>
<h2><a href="#">TRAVELS</a></h2>
<nav>
<ul>
<li><a href="#">Hotels</a></li>
<li><a href="#">Flights</a></li>
<li><a href="#">Tours</a></li>
<li><a class="btn" href="#">Register / Log Iin</a></li>
</ul>
</nav>
</header>
<div class="cover">
<h1>Discover what's out there.</h1>
<form class="flex_form">
<input type="search" name="" placeholder="where do you want to go?" />
<input type="submit" name="" value="Search" />
</form>
<div class="madeby">
<strong>HTML CSS RESPONSIVE WEBSITE</strong>
</div>
</div>
</div>
</body>
</html>