forked from samdoiron/WhoAmI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Who Am I?</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<h1>Who Am I?</h1>
<p>This website uses advanced neuroscience to determine your interests.</p>
<p>Simply click every red square that you see below (you may need to scroll).</p>
<p>Click "done" when you are done.</p>
<p>Don't worry, no data is recorded.</p>
<p>(Javascript required)</p>
<p style="color:rgba(0,0,0,.2)">By TinSnail (Conlectus on HN)</p>
<div><button onclick="done()">done!</button></div>
<div id="squares">
</div>
<div><button id="bottom-button" onclick="done()" style="display: none">done!</button></div>
<script src="js/vendor/jquery.min.js"></script>
<script src="js/vendor/lodash.js"></script>
<script src="js/vendor/raphael-min.js"></script>
<script src="js/vendor/g.raphael-min.js"></script>
<script src="js/vendor/piechart.js"></script>
<script src="js/main.js"></script>
</body>
</html>