forked from carolinehardin/DigitalPrivacyDetectives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
part1-clueroom.html
51 lines (43 loc) · 1.85 KB
/
part1-clueroom.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Clue Room | Part 1</title>
<link href="assets/css/clueroom.css" rel="stylesheet">
<link href="assets/css/part1-clueroom.css" rel="stylesheet">
</head>
<body>
<!-- background image -->
<div class="room"></div>
<!-- notes on the wall -->
<div class="note" id="note1">
<a href="part1-clues/part1-note1.html"><img src="images/stickyNote.png" alt="note"></a>
</div>
<div class="note" id="note2">
<a href="part1-clues/part1-note2.html"><img src="images/stickyNote.png" alt="note"></a>
</div>
<div class="note" id="note3">
<a href="part1-clues/part1-note3.html"><img src="images/stickyNote.png" alt="note"></a>
</div>
<!-- stack of books in light -->
<img class="bookStack" id="books" src="images/bookStack.png" alt="bookStack">
<!-- note cards -->
<a href="part1-clues/part1-cards.html"><img class="cards" id="cards" src="images/cards.png" alt="study cards"></a>
<!-- hint -->
<div class="hint" hidden>Maybe the report isn't even here...</div>
<!-- books message -->
<div class="books-message" hidden>
What's this?<br><br>
It looks like papers tucked in between the books!<br><br>
Hmmm this doesnt look like Sam's report...it looks pretty private...do you still want to read it?<br><br><br>
<a class="accept papers-yes" href="part1-clues/part1-book.html">Yes</a>
<a class="button papers-no">No</a>
</div>
<!-- button to finish -->
<a href="part1-clueroom_outro.html" class="button finish">Finish</a>
<script src="assets/js/jquery-3.4.1.js"></script>
<script src="assets/js/clueroom.js"></script>
<script src="assets/js/part1-clueroom.js"></script>
</body>
</html>