-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Mini-Game</title>
<link href="./index.css" rel="stylesheet">
</head>
<body>
<header>
<img src="./imgs/logo.png" alt="logo" class="logo" data-key="logo">
<h1>Mini Game</h1>
</header>
<nav>
<img src="./imgs/blue_t.png" alt="top" data-key="part" data-value="top">
<img src="./imgs/blue_p.png" alt="pants" data-key="part" data-value="pants">
<img src="./imgs/blue_s.png" alt="skirts" data-key="part" data-value="skirts">
<button class="blue" data-key="color" data-value="blue">Blue</button>
<button class="yellow" data-key="color" data-value="yellow">Yellow</button>
<button class="pink" data-key="color" data-value="pink">Pink</button>
</nav>
<section>
<ul class="lists">
</ul>
</section>
</body>
<script src="./classify.js"></script>
<script src="./gen-clothes.js"></script>
<script src="./index.js"></script>
</html>