-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.11 KB
/
Copy pathindex.html
File metadata and controls
36 lines (33 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>One Shot</title>
<link rel="stylesheet" href="style.css"/>
<script src="script.js" defer></script>
<!-- Goolge Analytics (tracking engagment and user count) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXX');
</script>
</head>
<body>
<div class="container">
<div id="reflection" class="hidden">
<p>"Did he do it?"</p>
<p>You'll never know.</p>
<p>You already decided.</p>
<p><em>The only way to be unsure is to be absolutely convinced you are sure.</em></p>
</div>
<div id="dialogue-box">
<p id="dialogue-text">You sit across from the man who may have killed your wife.</p>
</div>
<div id="choices"></div>
<button id="start-button">Begin</button>
</div>
</body>
</html>