-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathticTacToe.html
37 lines (36 loc) · 1.8 KB
/
ticTacToe.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
<main>
<section id="details">
<div class="player-details">
<div class="input-group">
<label>Player X</label>
<div>
<input type="text" name="player_x" value />
<button class="save">
<svg viewBox="0 0 448 512" width="25" title="save">
<path
d="M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"
/>
</svg>
</button>
</div>
</div>
<div class="input-group">
<label>Player O</label>
<div>
<input type="text" name="player_o" value />
<button class="save">
<svg viewBox="0 0 448 512" width="25" title="save">
<path
d="M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"
/>
</svg>
</button>
</div>
</div>
</div>
</section>
<section id="ttb">
<div id="tic-tac-toe-board"></div>
<button id="start-button">Start!</button>
</section>
</main>