forked from florinpop17/10websites-design-to-html-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tourism</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<aside>
<a href="#" class="special">Explore</a>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Places</a></li>
<li><a href="#">Video</a></li>
<li><a href="#">Locations</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Book</a></li>
<li><a href="#">Photos</a></li>
</ul>
<a href="#" class="special">Learn More</a>
</aside>
<main>
<div class="logo">
<i class="fas fa-city"></i>
</div>
<h1>Visit New York</h1>
<h3>Express yourself and explore</h3>
</main>
</body>
</html>