-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (26 loc) · 855 Bytes
/
index.html
File metadata and controls
37 lines (26 loc) · 855 Bytes
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>#codevember - Day 19 - Ocean</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="page">
<div class="data">
<h1>Oceans</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/jjayberthume/ocean-side-8-bit" target="_blank">Music by JJayBerthume</a>
</div>
<div id="screen" class="sky">
<div class="clouds"></div>
<div class="moon"></div>
<div class="moon reflect"></div>
<canvas id="canvas"></canvas>
</div>
</div>
<audio id="song" src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/ocean-side-by-jjayberthume.mp3"></audio>
<script src="js/index.js"></script>
</body>
</html>