-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (33 loc) · 1.14 KB
/
index.html
File metadata and controls
44 lines (33 loc) · 1.14 KB
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>#codevember - Day 9: French Fries</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="page">
<div class="data">
<h1>French Fries</h1>
<h2>#Codevember</h2>
<a class="ghost" href="https://twitter.com/Manz">Code by Manz</a>
<a class="ghost" href="https://soundcloud.com/dailychiptune/razor1911-starcraft-2-wings-of-liberty-crack">Music by Razor 1911</a>
</div>
<div id="screen">
<div id="factory"></div>
<img class="fries" src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/french-fries-empty.png">
<img class="fonly" src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/french-fries-only.png">
<div id="band">
<div class="wheel"></div>
<div class="wheel"></div>
<div class="wheel"></div>
<div class="wheel"></div>
<div class="wheel"></div>
</div>
<div id="ramp"></div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/howler/2.0.3/howler.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>