odin-codespace/tictactoe/index.html
Smig 87be725167
Realtictactoe (#8)
* feat: setup initial game methods

* feat: add update position method

* feat: created basic prompt for input

* feat: cli game loop complete

* feat: boiler plate html added

* feat: added gameplay

* feat: added game evaluation

* feat: added grid and basic styling

* feat: game functionality added

* feat: project complete
2023-12-14 18:37:25 -05:00

35 lines
1,002 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;0,700;0,900;1,500;1,700;1,900&family=Silkscreen:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>Tic-Tac-Toe</title>
</head>
<body>
<div class="container">
<header>
<div class="header">
<h1>Tic-Tac-Toe</h1>
</div>
</header>
<main>
<div class="content">
<div class="game-status">
</div>
<div class="game-area">
</div>
</div>
</main>
<footer>
<div class="footer"></div>
</footer>
</div>
<script src="./js/main.js"></script>
</body>
</html>