-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (25 loc) · 811 Bytes
/
index.html
File metadata and controls
29 lines (25 loc) · 811 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Full Screen Overlay Navigation Bar Using GSAP | Rustcode</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
</head>
<body>
<div class="menu-container">
<nav>
<a href="#" class="menu-item">Work</a>
<a href="#" class="menu-item">Profile</a>
<a href="#" class="menu-item">Contact</a>
<a href="#" class="menu-item">Design</a>
<a href="#" class="menu-item">Login</a>
</nav>
</div>
<header>
<h1 class="logo">M.</h1>
<i class="fa fa-bars menu-btn" id="menu-btn"></i>
</header>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js"></script>
<script src="script.js"></script>
</body>
</html>