-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.38 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
<!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" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Menu overlay -->
<div class="overlay overlay-slide-left" id="overlay">
<!-- Menu items -->
<nav>
<ul>
<li id="nav-1" class='slide-out-1'><a href="#home">HOME</a></li>
<li id="nav-2" class='slide-out-2'><a href="#about">ABOUT</a></li>
<li id="nav-3" class='slide-out-3'><a href="#skills">SKILLS</a></li>
<li id="nav-4" class='slide-out-4'><a href="#projects">PROJECTS</a></li>
<li id="nav-5" class='slide-out-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 href="#" target="_blank">Ariel Design</a></section>
<section id="about"><h1>Learn More About Me</h1></section>
<section id="skills"><h1>These Are My Strengths</h1></section>
<section id="projects"><h1>These Are My Results</h1></section>
<section id="contact"><h1>Available Anytime</h1></section>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>