-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.7 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.7 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
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<title>pciev.com</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/img/assets/favicons/chess.png">
</head>
<body>
<main>
<div id="taskbar">
<button id="startButton">Start</button>
<div id="startMenu" class="hidden">
<ul>
<li><a href="#" class="menuItem" data-url="/files/index.html">Files</a></li>
<li><a href="#" class="menuItem" data-url="/html/inventory/index.html">Inventory</a></li>
<li><a href="#" class="menuItem" data-url="/html/credits/index.html">Credits</a></li>
</ul>
</div>
</div>
<div id="windowScreen" class="hidden">
<div id="windowContent"></div>
<button id="closeButton">X</button>
</div>
<div class="desktopICO">
<table class="desktopICOTable">
<tr>
<td><img src="/img/assets/icons/recycle.png" alt="Recycle Bin"></td>
</tr>
<tr>
<td><a href="#" class="menuItem" data-url="/html/videos/eastern.html"><img src="/img/assets/icons/eastern.png" alt="DMV Anthem"></a></td>
</tr>
<tr>
<td><a href="#" class="menuItem" data-url="/html/videos/metropawn.html"><img src="/img/assets/icons/metropa.png" alt="Metro Pawn"></td>
</tr>
</table>
</div>
</main>
<script src="/js/index.js"></script>
</body>
</html>