-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet">
<title>Bac'Air Ruleset</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<main>
<section>
<div id="headerTitle">
<h1 id="title">Bac'Air Ruleset</h1>
</div>
<p>Click on a stage to strike/unstrike it. Double-click to select a stage.</p>
<article>
<h2>Starters</h2>
<ul id="starters">
</ul>
</article>
<article>
<h2>Counterpicks</h2>
<ul id="counterpicks">
</ul>
</article>
</section>
</main>
<aside style="display: none;">
<section id="setting">
<h2>Choose stages</h2>
<article id="editStarters">
<h3>Choose Starters</h3>
</article>
<article id="editCounterpicks">
<h3>Choose Counterpicks</h3>
</article>
<button type="button" id="applyBtn">apply</button>
</section>
</aside>
<footer>
<button type="reset" id="resetBtn">Reset</button>
<button type="button" id="linkBtn">Share link</button>
<button type="button" id="editBtn">Edit</button>
</footer>
<script src="client.js"></script>
</body>
</html>