-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 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
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ===== BOX ICONS ===== -->
<link href='https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css' rel='stylesheet'>
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="styles.css" />
<title>Animated Navigation</title>
</head>
<body>
<nav id="nav">
<ul>
<li><a href="https://boxicons.com/">Home</a></li>
<li><a href="#">Works</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<button class="icon" id="icon">
<div class="line line1"></div>
<div class="line line2"></div>
<i class='bx bxs-mouse'></i>
</button>
</nav>
<section class="project_info" id="project-info">
<div class="project_info_card">
<img src="ReadMe-Images/Web-Effect-Project-banner3.png" class="project_info_img" />
<h2>Project Name</h2>
<p>Animated Navigation Bar</p>
<h2>Project Key Concepts</h2>
<p>button manipulation, transitions</p>
<i class='bx bx-x close' style='color:#000000' id="project-close"></i>
</section>
<script src="./script.js"></script>
</body>
</html>