-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
40 lines (39 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Mouse Shadow - JavaScript30 by Ayush Gupta</title>
<link href="src/styles.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="../common.css" type="text/css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="../assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="../assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="../assets/favicon-16x16.png"
/>
</head>
<body>
<a href="https://javascript30.ayushgupta.tech" target="_blank">
<div class="project-tag" style="background-color: white; color: black;">
<div class="tag-num">#16</div>
<div class="tag-text">of JavaScript30</div>
</div>
</a>
<div class="hero">
<h1 contenteditable>🔥WOAH!</h1>
<h7>Pro Tip: The text above is editable ;-)</h7>
</div>
<script src="src/index.js"></script>
</body>
</html>