-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 912 Bytes
/
index.html
File metadata and controls
37 lines (34 loc) · 912 Bytes
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
<!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="style.css">
</head>
<body>
<header>
<nav>
<div class="logo">
Coder Resort
</div>
<div class="menu">
<a href="#">Home</a>
<a href="#">Feature</a>
<a href="#">Explore</a>
<a href="#">About</a>
<a href="#">Contact me</a>
</div>
<div class="register">
<a href="#">Register</a>
</div>
</nav>
<section class="h-text">
<span>Enjoy</span>
<h1>Explore the world</h1>
<br>
<a href="#">visit just now</a>
</section>
</header>
</body>
</html>