-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (72 loc) · 2.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sleepwalker - A Counterspell Game</title>
<link rel="stylesheet" href="styles/style.css" />
<link rel="icon" href="assets/img/favicon.svg" />
</head>
<body style="width: 100vw; height: 100vh; overflow: hidden">
<a class="howtoplay-icon"
href="javascript:howtoplay()">?</a>
<h1 style="width: 100vw; height: 10vh; text-align: center; font-size: 7vw">
Sleepwalker
</h1>
<audio style="display: none" id="menutheme" controls loop>
<source src="assets/audio/song1.ogg" type="audio/ogg">
<source src="assets/audio/theme.mp3" type="audio/mpeg">
</audio>
<div class="shell" id="shell" onclick="document.querySelector('.terminal-input').focus()">
<div class="lines"></div>
<div class="current-line">
<p><span class="terminal-text">[email protected]:~</span>$ </p>
<input class="terminal-input" type="text" />
</div>
</div>
<div class="bottom-bar">
<a href="https://hackclub.com/" target="_blank"><img class="hc-flag"
src="https://assets.hackclub.com/flag-orpheus-left.svg" alt="Hack Club" /></a>
<div class="dev-profile-pictures">
<div class="dev-profile-icon">
<a href="https://github.com/isaacfonner" target="_blank">
<div class="outer-circle">
<div class="inner-circle isa"></div>
</div>
</a>
</div>
<div class="dev-profile-icon">
<a href="https://github.com/MichaByte" target="_blank">
<div class="outer-circle">
<div class="inner-circle mra"></div>
</div>
</a>
</div>
<div class="dev-profile-icon">
<a href="https://github.com/hnasheralneam" target="_blank">
<div class="outer-circle">
<div class="inner-circle hna"></div>
</div>
</a>
</div>
<div class="dev-profile-icon">
<a href="https://github.com/gesutherland" target="_blank">
<div class="outer-circle">
<div class="inner-circle ges"></div>
</div>
</a>
</div>
</div>
<div class="counterspell-logo">
<a href="https://counterspell.hackclub.com/" target="_blank"><img src="assets/img/counterspell.png"
alt="Counterspell" />
</a>
</div>
</div>
<script src="scripts/data.js"></script>
<script src="scripts/inventory.js"></script>
<script src="scripts/quests.js"></script>
<script src="scripts/shell.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>