-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (70 loc) · 2.19 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="de">
<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">
<title>Navigation Nation</title>
<link rel="icon" type="image/png" href="/favicon-48.png" sizes="48x48">
<link rel="icon" type="image/png" href="/favicon-144.png" sizes="144x144">
<link rel="apple-touch-icon" type="image/png" href="/favicon-180.png" sizes="180x180">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
</head>
<body>
<!-- Header -->
<header>
<h1>Navigation Nation</h1>
<button class="hamburger-button">
<span></span>
<span></span>
<span></span>
</button>
<nav>
<h2 class="hidden">Navigation</h2>
<ul>
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#skills">Skills</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
</header>
<!-- Landing Section -->
<section class="landing-section" id="landing">
<h2>#Home</h2>
</section>
<!-- about Section -->
<section class="about-section" id="about">
<h2>#About</h2>
</section>
<!-- skills Section -->
<section class="skills-section" id="skills">
<h2>#Skills</h2>
</section>
<!-- projects Section -->
<section class="projects-section" id="projects">
<h2>#Projects</h2>
</section>
<!-- contact Section -->
<section class="contact-section" id="contact">
<h2>#Contact</h2>
</section>
<button class="fabutton">
<i class="fa-solid fa-dice-three"></i>
</button>
<script src="./random_variables.js"></script>
<script src="./navigation.js"></script>
</body>
</html>