-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (68 loc) · 2.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Panda's Digiverse</title>
<link href="/css/style.css?version=1" rel="stylesheet" type="text/css" media="all">
<link href="/css/index.css?version=1" rel="stylesheet" type="text/css" media="all">
<script src="/js/index.js?version=1" crossorigin="anonymous"></script>
</head>
<!--
Main source image for this page comes from "Nooch - Abakareta Inbou" I think
The sidebar things come from Doki Doki Pretty League, though I've edited them quite a bit
-->
<body>
<div id="audio-player-container">
<audio id="music" loop preload controls>
<source src="audio/dance_in_the_memories.mp3" id="music-src" crossOrigin="anonymous" type="audio/ogg">
Your browser does not support the audio element.
</audio>
<audio id="bootSound" preload controls>
<source src="audio/boot.mp3" id="music-src" crossOrigin="anonymous" type="audio/ogg">
Your browser does not support the audio element.
</audio>
</div>
<div class="main-container">
<div id="boot-screen">
<div id="boot-container">
<p id="boot-text" style="white-space: pre-line"></p>
</div>
</div>
<div class="main-window" style="display: none;">
<div class="subwindow" id="main-image">
<div class="page-image" id="home-img">
<input type="image" id="mute" alt="mute" src="/img/icons/playing_big.png">
</div>
</div>
<div class="subwindow" id="left-sidebar">
<div class="nav-row">
<a class="navbutton" href="/index.html">
<img src="/img/icons/computer_recolor.png"></img>
</a>
<a class="navbutton" href="/radio.html">
<img src="/img/icons/cd_audio_recolor.png"></img>
</a>
</div>
<div class="nav-row">
<a class="navbutton" href="/contact.html">
<img src="/img/icons/envelope_closed_recolor.png"></img>
</a>
<a class="navbutton" href="/explore/explore.html">
<img src="/img/icons/globe_map_recolor.png"></img>
</a>
</div>
</div>
<div class="subwindow" id="text-box">
<div class="text-container">
<p class="speaker-text">Panda</p>
<p class="dialog-text">
Welcome to my corner of cyberspace! How can I help you?
</p>
</div>
</div>
<div class="subwindow" id="right-sidebar"></div>
</div>
</div>
</body>
</html>