-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CyVen 0.11</title>
<script src="https://unpkg.com/typewriter-effect@latest/dist/core.js"></script>
<link rel="stylesheet" href="styles/vars.css">
<link rel="stylesheet" href="styles/main.css">
<script src="scripts/jquery-3.6.0.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;900&display=swap" rel="stylesheet">
</head>
<body>
<div id="gameBoard" class="panel">
<span class="titlebar">Welcome to CyVen</span>
<div class="content">
<div id="pnlText" class="panel">
<span class="titlebar">LOG</span>
<span id="txtOutput" class="content"></span>
</div>
<div id="pnlButtons" class="panel">
<span class="titlebar">ACTIONS</span>
<span id="actions" class="content"></span>
</div>
<div id="pnlCharacter" class="panel">
<span class="titlebar">CHARACTER & INVENTORY</span>
<span id="actions" class="content"></span>
</div>
</div>
</div>
<script src="scripts/functions.js"></script>
<script src="scripts/data.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>