-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Tag-game</title>
</head>
<body>
<h1>Tag-game</h1>
<section class="field field_golden" data-solved="true">
<button type="button" class="field__item" tabindex="-1">1</button>
<button type="button" class="field__item" tabindex="-1">2</button>
<button type="button" class="field__item" tabindex="-1">3</button>
<button type="button" class="field__item" tabindex="-1">4</button>
<button type="button" class="field__item" tabindex="-1">5</button>
<button type="button" class="field__item" tabindex="-1">6</button>
<button type="button" class="field__item" tabindex="-1">7</button>
<button type="button" class="field__item" tabindex="-1">8</button>
<button type="button" class="field__item" tabindex="-1">9</button>
<button type="button" class="field__item" tabindex="-1">10</button>
<button type="button" class="field__item" tabindex="-1">11</button>
<button type="button" class="field__item" tabindex="-1">12</button>
<button type="button" class="field__item" tabindex="-1">13</button>
<button type="button" class="field__item" tabindex="-1">14</button>
<button type="button" class="field__item" tabindex="-1">15</button>
<button type="button" class="field__item field__item_empty" tabindex="-1">16</button>
</section>
<button class="shuffle" type="button">Shuffle</button>
<script type="module" src="/src/main.ts"></script>
</body>
</html>