-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (40 loc) · 1.19 KB
/
index.html
File metadata and controls
54 lines (40 loc) · 1.19 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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>#codevember - Day 27: Beer</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="flex">
<div class="first beer">
<div class="foam"></div>
<div class="liquid"></div>
</div>
<div class="second beer">
<div class="foam"></div>
<div class="liquid"></div>
</div>
</div>
<div class="bar"></div>
<div class="path">
<div class="people anim">
<div class="head"></div>
<div class="body"></div>
<div class="legs"></div>
</div>
<div class="shout">A human!!</div>
</div>
<div class="data">
<h1>🍺 Beer</h1>
<h2>#Codevember</h2>
<a class="ghost" href="https://twitter.com/Manz" target="_blank">Code by Manz</a>
<a class="ghost" href="https://soundcloud.com/rainbowdragoneyes/sakkijarven-polka" target="_blank">Music by Rainbowdragoneyes</a>
</div>
<audio autoplay>
<source src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/polka-by-rainbowdragoneyes.mp3"/>
<source src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/polka-by-rainbowdragoneyes.ogg"/>
</audio>
<script src="js/index.js"></script>
</body>
</html>