-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 999 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="icon.svg" type="image/x-icon">
<title>Hertz | Abhinandan</title>
</head>
<body>
<header>
<figure>
<img src="icon.svg">
</figure>
<nav>
<ul>
<li>I</li>
<li>Am</li>
<li>Hertz</li>
<li> | </li>
<li>Abhinandan</li>
</ul>
</nav>
</header>
<main>
<div class="banner">
<div>
<h1 class="left">CURSOR ANIMATION</h1>
<h1 class="right">using Javascript</h1>
</div>
<h4> Hertz this side </h4>
<button id="openGit">Open GitHub ☯</button>
<canvas id="dotsCanvas"></canvas>
</div>
</main>
<script src="scripts.js"></script>
</body>
</html>