-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<title>Wired</title>
<link rel="stylesheet" type="text/css" href="index.css">
<link href="https://fonts.googleapis.com/css?family=VT323&display=swap" rel="stylesheet">
</head>
<body>
<div class="computer">
<div id="screen">
<div id="console" class="off">
----------------------------------------------------
<h1>WIRED</h1>
<h4>A site designed after CRT monitor retro look</h4>
----------------------------------------------------
<p><span class="command-prefix">Enter username:~$</span><input type="text" id="username" onkeypress="saveUser(event)"/></p>
</div>
</div>
<button class="power-button" onclick="switchScreen()"><img src="resources/power-button-off.svg" id="power-icon"/></button>
</div>
<audio id="wind-up" src="resources/comp_windup.ogg"></audio>
<audio id="wind-down" src="resources/comp_winddown.ogg"></audio>
<audio id="monitor-off" src="resources/monitor_off.ogg"></audio>
<script src="index.js"></script>
</body>
</html>