-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 2.33 KB
/
Copy pathindex.html
File metadata and controls
55 lines (55 loc) · 2.33 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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">
<script src="https://kit.fontawesome.com/d33c904a9d.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>Navigation</title>
</head>
<body>
<div class="container">
<header>
<h1>Navigation page</h1>
</header>
<nav>
<ul class="main-menu">
<div>
<li class="fas fa-chevron-right"><a href="htmlsandbox/index.html">HTML sandbox</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="csssandbox/index.html">CSS sandbox</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="csssandbox2/index.html">CSS sandbox 2</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="hotel_website/index.html">Hotel Website</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="edgeleder_website/index.html">Edge Leder website</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="edgeleder_website_2/index.html">Edge Leder website rebuilded</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="Hamburger_Overlay_Menu/index.html">Hamburger menu with pure CSS</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="Presentation_website/index.html">Presentation onepage website</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="Knowledge_Resume/index.html">Knowledge Resume website</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="DropDown/index.html">DropDown menu</a></li>
</div>
<div>
<li class="fas fa-chevron-right"><a href="Newsgrid/index.html">NewsGrid website</a></li>
</div>
</ul>
</nav>
</div>
</body>
</html>