-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 1.42 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
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="static/index.css" />
<link rel="stylesheet" type="text/css" href="static/print.css" />
<title>This Guitar Pedal Does Not Exist</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-4517625-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-4517625-1");
</script>
</head>
<body>
<header>
<div>
<h1>This Guitar Pedal Does Not Exist</h1>
</div>
<nav>
<a
target="_"
href="https://blog.steveasleep.com/lets-generate-some-imaginary-guitar-pedals"
>
About this site
</a>
<a
target="_"
href="https://open.spotify.com/artist/2oRwM2XfnfWccBOJJ7tdyE"
>
🎵 Listen to Quick Fiction
</a>
<a target="_" href="https://twitter.com/guitarpedalz">
Follow the Twitter bot
</a>
</nav>
</header>
<div id="app"></div>
<script src="./src/main.js"></script>
</body>
</html>