-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
41 lines (32 loc) · 990 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>zuckerberg.smile</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="style.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<main class="center">
<h1>zuckerberg.smile = <span class="value">0.0<span></h1>
<div class="sprite"></div>
<div class="controller">
<div class="mood mood--neutral">
<span class="mood__number">0.0</span>
</div>
<input type="range" min="0" max="19" value="0" class="mood__slider">
<div class="mood mood--happy">
<span class="mood__number">1.0</span>
</div>
</div>
</main>
<footer>
by <a href="https://twitter.com/terkelg">@terkelg</a>
</footer>
<script src="./main.js"></script>
</body>
</html>