-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (44 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Looper - LD47 - Bret Hudson</title>
<meta name="description" content="An endless cookie clicker made for Ludum Dare 47" />
<meta property="og:title" content="Looper">
<meta property="og:description" content="An endless cookie clicker made for Ludum Dare 47">
<meta property="og:type" content="website">
<meta property="og:url" content="https://brethudson.github.io/ld47/">
<meta property="og:image" content="https://brethudson.github.io/ld47/og.png">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="BretHudson" />
<meta name="twitter:creator" content="BretHudson" />
<meta name="twitter:title" content="Looper" />
<meta name="twitter:description" content="An endless cookie clicker made for Ludum Dare 47" />
<meta name="twitter:image:src" content="https://brethudson.github.io/ld47/og.png" />
<meta name="twitter:url" content="https://brethudson.github.io/ld47/" />
<meta name="theme-color" content="#CC3633">
<link rel="stylesheet" type="text/css" href="./css/styles.css">
<script type="text/javascript" src="./js/main.js"></script>
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css2?family=Lobster+Two&display=swap" rel="stylesheet">
</head>
<body class="loading">
<header>
<h1>Looper</h1>
<h2>Click the button or press SPACE to loop</h2>
<div id="progress">
<p>Loops: <span id="score"></span></p>
</div>
</header>
<div id="game">
<div id="cycle">
<div class="half spinner"></div>
<div class="half filler"></div>
<div class="mask"></div>
</div>
<div id="cursor"></div>
<div id="button">GO!</div>
</div>
<footer>Created by <a target="_BLANK" href="https://brethudson.com">Bret Hudson</a></footer>
</body>
</html>