mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-05-09 20:05:20 -04:00
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
This commit is contained in:
parent
8822ecfc5f
commit
87be725167
3 changed files with 412 additions and 0 deletions
35
tictactoe/index.html
Normal file
35
tictactoe/index.html
Normal file
|
@ -0,0 +1,35 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue