41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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">
|
|
<link rel="stylesheet" href="css/app.css"/>
|
|
<title>Tic-Tac-Toe</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1 class="metallic shadow">Tic-Tac-Toe</h1>
|
|
<section class="player-panel">
|
|
<button id="buttonCross" class="player-select">
|
|
<span class="light"></span>
|
|
Player 1
|
|
</button>
|
|
<button id="buttonReset">Reset</button>
|
|
<button id="buttonCircle" class="player-select">
|
|
<span class="light"></span>
|
|
Player 2
|
|
</button>
|
|
</section>
|
|
<section id="stage" class="stage">
|
|
<button id="0" disabled></button>
|
|
<button id="1" disabled></button>
|
|
<button id="2" disabled></button>
|
|
<button id="3" disabled></button>
|
|
<button id="4" disabled></button>
|
|
<button id="5" disabled></button>
|
|
<button id="6" disabled></button>
|
|
<button id="7" disabled></button>
|
|
<button id="8" disabled></button>
|
|
</section>
|
|
<footer>
|
|
2021 © <a href="https://johnespiritu.dev" target="_blank" rel="noopener">John Espiritu</a>
|
|
</footer>
|
|
</main>
|
|
<script src="js/app.js"></script>
|
|
</body>
|
|
</html> |