-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (58 loc) · 1.71 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
55
56
57
58
59
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index,follow" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<title>Game Tic-Tac-Toe</title>
<link rel="canonical" content="" />
<link rel="shortcut icon" href="" />
<link rel="apple-touch-icon" href="" />
<link rel="stylesheet" href="/assets/css/style.css" />
</head>
<body>
<main class="start">
<h1>Game Tic-Tac-Toe</h1>
<section class="boardData">
<h2>Elige tu ficha</h2>
<div class="boardData__token">
<button class="boardData__token--btn" id="token_x">x</button>
<button class="boardData__token--btn" id="token_o">o</button>
</div>
<div class="boardData__box">
<div class="boardData__player">
<div class="boardData__player__info">
<h3>Player</h3>
<span id="nameA">?</span>
</div>
<div class="boardData__player__info">
<h3>Score</h3>
<span id="score_x">0</span>
</div>
</div>
<div class="boardData__player">
<div class="boardData__player__info">
<h3>Player</h3>
<span id="nameB">?</span>
</div>
<div class="boardData__player__info">
<h3>Score</h3>
<span id="score_o">0</span>
</div>
</div>
</div>
</section>
<section class="message">
<p id="newMessage"></p>
</section>
<section class="gameBoard">
<div class="gameBoard__box"></div>
</section>
<button class="reset__btn">Reiniciar</button>
</main>
<script type="module" src="/assets/js/index.js"></script>
</body>
</html>