-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (75 loc) · 4.2 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
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Set Name -->
<title>LS Game Enhanced</title>
<!-- Set Metadata -->
<meta charset="UTF-8">
<meta name="description" content="The enhanced version of LS Game">
<meta name="keywords" content="rpg, casual, text-based">
<meta name="author" content="da703337">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Import Font -->
<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=Fira+Sans&family=Kanit&display=swap" rel="stylesheet">
<!-- Load Styles -->
<link rel="stylesheet" href="styles/normalise.css">
<link id="stylesheet" rel="stylesheet" href="styles/lightstyle.css">
<link rel="stylesheet" href="styles/screensize.css">
<!-- Load Scripts -->
<script src="scripts/jquery.js"></script>
<script src="scripts/data/playerData.js"></script>
<script src="scripts/navBtns.js"></script>
<script src="scripts/select.js"></script>
<script src="scripts/interactBtns.js"></script>
</head>
<body>
<!-- Header Content -->
<header class="fullSpan">
<h1>LS Game Enhanced</h1>
</header>
<!-- Navigation Buttons -->
<nav class="fullSpan">
<div style="display: inline-block;">
<button id="MainBtn1" class="main">Characters</button>
<button id="MainBtn2" class="main">Clothing</button>
</div>
<div style="display: inline-block;">
<button id="MainBtn3" class="main">Weapons</button>
<button id="MainBtn4" class="main">Start</button>
</div>
</nav>
<!-- Main Content -->
<main class="fullSpan">
<!-- Name and description of current menu -->
<article>
<h2 id="MenuHeader">Welcome to LS Game Enhanced!</h2>
<p id="MenuDescription">Select a menu to begin. Only Stats and Merchant are available, although Merchant's functionality is currently unimplemented.</p>
</article>
<br>
<!-- Buttons to change submenu -->
<article id="SubMenuBtns">
<!-- Content controlled by nav buttons -->
</article>
<br>
<!-- Menu Content -->
<article id="MenuContent">
<p>All menus are now fully functional!</p>
</article>
<br>
<!-- Buttons to interact with menu -->
<article id="InteractBtns">
<!-- Content controlled by nav buttons -->
</article>
</main>
<!-- Footer Content -->
<footer class="fullSpan">
<!-- Buttons to report bugs and check what's new in the latest version -->
<a href="https://github.com/703337/LS-Game-Enhanced/issues"><button style="width: 125px;">Report a Bug</button></a>
<a href=""><button style="width: 125px;">What's New</button></a>
<!-- Copyright License -->
<p xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/"><a property="dct:title" rel="cc:attributionURL" href="https://703337.github.io/LS-Game-Enhanced/">LS Game Enhanced</a> by <a rel="cc:attributionURL dct:creator" property="cc:attributionName" href="https://github.com/703337?tab=repositories">Daemon Aitken</a> is licensed under <a href="http://creativecommons.org/licenses/by-nc-nd/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-NC-ND 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nd.svg?ref=chooser-v1"></a></p>
</footer>
</body>
</html>