-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Animated Navigation</title>
<link rel="icon" type="image/png" href="favicon.png" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Nunito&family=Satisfy&display=swap"
rel="stylesheet"
/>
<!-- My Stylesheet -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Menu Overlay -->
<div class="overlay overlay-slide-left" id="overlay">
<!-- Menu Items -->
<nav>
<ul>
<li class="slide-out-1" id="nav-1"><a href="#home">🌸 Home</a></li>
<li class="slide-out-2" id="nav-2"><a href="#about">🦊 About</a></li>
<li class="slide-out-3" id="nav-3">
<a href="#skills">⚡️ Skills</a>
</li>
<li class="slide-out-4" id="nav-4">
<a href="#projects">🗃 Projects</a>
</li>
<li class="slide-out-5" id="nav-5">
<a href="#contact">📥 Contact</a>
</li>
</ul>
</nav>
</div>
<!-- Menu Bars -->
<div class="menu-bars" id="menu-bars">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<!-- Sections -->
<section id="home">
<a class="signature" href="/~https://github.com/elemarmar" target="_blank"
>Arctic Fox</a
>
</section>
<section id="about">
<h1>
🦊 Learn More
<a href="/~https://github.com/elemarmar" target="_blank">About Me</a>
</h1>
</section>
<section id="skills"><h1>⚡️ These Are My Super Powers</h1></section>
<section id="projects"><h1>🗃 These Are My Ideas</h1></section>
<section id="contact"><h1>📥 Available Anytime</h1></section>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>