-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
27 lines (26 loc) · 671 Bytes
/
Index.html
File metadata and controls
27 lines (26 loc) · 671 Bytes
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
<!DOCTYPE HTML>
<html lang="eng-us">
<head>
<meta charset="UTF-8">
<title>Sprite Viewer</title>
<link rel="stylesheet" href="styles/main.css" />
<script src="scripts/lib/modernizr.custom.90437.js"></script>
<script src="scripts/loader.js"></script>
</head>
<body>
<div id="app">
<!-- Main Menu -->
<div class="screen" id="main-menu">
<h2 class="logo">Sprite Viewer</h2>
<ul class="menu">
<li><button name="viewer-screen">Play</button>
<li><button name="exit">Exit</button>
</ul>
</div>
<!-- Viewer Screen -->
<div class="screen" id="viewer-screen">
<div class="viewer"></div>
</div>
</div>
</body>
</html>