-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (118 loc) · 4.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Aesop Rock - Shrunk</title>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lettering.js/0.7.0/jquery.lettering.min.js"></script>
<link rel="stylesheet" href="https://s.mlcdn.co/animate.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/textillate/0.4.0/jquery.textillate.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<link rel='stylesheet' href='css/sudokuJS.css' />
<link rel="stylesheet" href="css/shrunk.css" />
</head>
<body>
<div class="container-fluid">
<header>
<h1>Psych Office Waiting Room</h1>
<h3>Please turn sound up and press play</h3>
<audio src="music/shrunk.m4a" controls="controls"/>
</header>
<section>
<table class="table">
<thead>
<tr>
<th class="questionColumn"></th>
<th class="answerColumn"></th>
</tr>
</thead>
<tbody>
<tr>
<td>First Name</td>
<td id="firstNameAnswer"></td>
</tr>
<tr>
<td>Last Name</td>
<td id="lastNameAnswer"></td>
</tr>
<tr>
<td>Address</td>
<td>
<div id="addressAnswer"></div>
<div id="apt"></div>
</td>
</tr>
<tr>
<td>Phone Number</td>
<td>
<div id="phoneAnswer"></div>
<div id="graffiti"></div>
</td>
</tr>
<tr>
<td>Social Security Number</td>
<td id="ssnAnswer"></td>
</tr>
<tr>
<td>Age</td>
<td id="ageAnswer"></td>
</tr>
<tr>
<td>In Case of Emergency</td>
<td id="emergencyAnswer"></td>
</tr>
<tr>
<td>Employment</td>
<td id="employmentAnswer"></td>
</tr>
<tr>
<td>Medical History</td>
<td id="medicalHistoryAnswer"></td>
</tr>
<tr>
<td>Military Service</td>
<td id="serviceAnswer"></td>
</tr>
<tr>
<td>Allergies</td>
<td id="allergiesAnswer"></td>
</tr>
<tr>
<td>Lunch</td>
<td id="lunchAnswer"></td>
</tr>
<tr>
<td>How do you feel?</td>
<td id="shrinkAnswer"></td>
</tr>
</tbody>
</table>
</section>
<footer>
First verse of Shrunk by <a href="https://twitter.com/AesopRockWins">Aesop Rock</a>
<br/>
<a href="http://rse.lnk.to/AesopTIK">Buy the album</a>
<br/>
<a href="https://twitter.com/hackyourcity">Coded by @hackyourcity</a>
</footer>
</div>
</body>
<script src="js/shrunk.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-82587803-1', 'auto');
ga('send', 'pageview');
</script>
</html>