mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-26 14:20:43 -05:00
36 lines
1,002 B
HTML
36 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>
|