-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.69 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 1.69 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
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Lil'Dress Up</title>
</head>
<body>
<main>
<section id="loading">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div>Loading...</div>
</section>
<section id="title" class="hidden">
<div>
<hgroup>
<h1>Lil'Dress Up</h1>
<p>A dress up game template!</p>
</hgroup>
<button type="button" name="start" id="start_b">Start</button>
</div>
</section>
<section id="game" class="hidden">
<div class="grid">
<div id="canvases"></div>
<form id="options"></form>
<div class="finish">
<button type="button" name="finish" id="finish_b">Finish</button>
</div>
</div>
</section>
<section id="finish" class="hidden">
<canvas id="final_dress"></canvas>
<div>
<button type="button" name="back" id="back_b">Back</button>
<a class="button" id="download_b">Download</a>
</div>
</section>
</main>
<script src="lil-dressup.js" charset="utf-8"></script>
<script src="main.js" charset="utf-8"></script>
<script src="configure.js" charset="utf-8"></script>
</body>
</html>