-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (36 loc) · 1.09 KB
/
index.html
File metadata and controls
47 lines (36 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>#codevember - Day 24: Heart</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="faraway x4">
<div class="faraway x3">
<div class="faraway x2">
<div class="faraway x1">
<div class="box">
<div class="think"></div>
<div class="heart"></div>
</div>
</div>
</div>
</div>
</div>
<div class="data top">
<h1>Heart</h1>
<p><span>What</span> <span>a</span> <span>Wonderful</span> <span>World</span></p>
</div>
<div class="data bottom">
<a class="ghost" href="https://twitter.com/Manz" target="_blank">Code by Manz</a>
<a class="ghost" href="https://www.louisarmstronghouse.org/" target="_blank">Music by Louis Armstrong</a>
<h2>#Codevember</h2>
</div>
<audio autoplay>
<source src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/wonderful.mp3">
<source src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/wonderful.ogg">
</audio>
<script src="js/index.js"></script>
</body>
</html>