-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 894 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home-Page</title>
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
</head>
<body class="home">
<button class="menu-btn"></button>
<div class="backdrop"></div>
<div class="menu">
<nav>
<a href="Index.html" class="link" style="animation-delay: 0.2s;">Home</a>
<a href="Contact.html" class="link" style="animation-delay: 0.3s;">Contact Info</a>
<a href="About.html" class="link" style="animation-delay: 0.4s;">About Me</a>
<a href="Projects.html" class="link" style="animation-delay: 0.5s;">Portfolio</a>
</nav>
</div>
<script src="script.js"></script>
</body>
</html>