-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TRES-EN-RAYA</title>
<link rel="stylesheet" href="./style.css">
<script defer src="./scripts.js"></script>
</head>
<body>
<h1>TRES-EN-RAYA</h1>
<h2>By Carry 2023
<a href="https://github.com/CarryARG/tres-en-raya">
<img src="./images/GitHub-Mark-120px-plus.png" alt="imagen de github">
</a>
</h2>
<div class="gameOptions">
<select id="modeSelect">
<option>VS Player</option>
<option>VS AI</option>
</select>
<select id="difficultySelect" class="hidden">
<option>Easy</option>
<option>Medium</option>
<option>Hard</option>
</select>
<button id="playButton">Play!</button>
<button id="resetButton" class="pressed">Reset</button>
</div>
<div id="board" class="desactivatedBoard">
<div class="boardSquare"></div>
<div class="boardSquare"></div>
<div class="boardSquare"></div>
<div class="boardSquare"></div>
<div class="boardSquare"></div>
<div class="boardSquare"></div>
<div class="boardSquare"></div>
<div class="boardSquare"></div>
<div class="boardSquare"></div>
</div>
<div id="resultDisplay"></div>
</body>
</html>