forked from monum/wheel-of-kindness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.88 KB
/
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
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes">
<link rel="shortcut icon" href="icon.png">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" type="text/css" href="style.css"/>
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet">
<title>One Boston Day: Wheel of Kindness</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.15.1/d3.js"></script>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</head>
<body>
<header>
<div id="title">One Boston Day</div>
<div id="sub-title">April 15, 2022</div>
</header>
<div id="wheel-container">
<img src="wheel.png" id="wheel"/>
<img src="marker.png" id="marker"/>
<div id="result"></div>
<div id="button-container">
<div id="button">
<div id="button-text">Discover an act of kindness</div>
</div>
<div id="try-again">
<div id="try-again-text"></div>
</div>
<div id="tweet">
<div id="tweet-text"></div>
</div>
</div>
</div>
<footer style="text-align: center; margin-bottom: 20px">
<p style="font-size: 16px; line-height: 20px; color: #aaa;">
<a style="color: #288BE4; text-decoration: none;" href="https://onebostonday.org">One Boston Day</a><br>
<p style="font-size: 13px; line-height: 13px; color: #aaa;">
<a style="color: #888; text-decoration: none;" href="https://twitter.com/newurbanmechs">
<i class="fa fa-twitter" style="padding-right: 3px;"></i>New Urban Mechanics
</a>
</p>
<p style="font-size: 13px; line-height: 13px; color: #aaa;">
© 2022
</p>
</footer>
<script src="app.js"></script>
</body>
</html>