js-tic-tac-toe/index.html
2023-05-04 12:28:19 -07:00

36 lines
No EOL
1.7 KiB
HTML
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="Enter your description here"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Tic-Tac-Toe</title>
</head>
<body class="d-flex flex-column text-center text-white bg-dark">
<div class="cover-container d-flex p-3 mx-auto flex-column">
<header class="mb-3">
<div>
<h3 class="float-md-start mb-0">Tic-Tac-Toe</h3>
<nav class="nav nav-masthead justify-content-center float-md-end">
<ul class="nav nav-pills">
<li class="nav-item"><a href="#" class="nav-link fw-bold" id="newButton">New</a></li>
<li class="nav-item"><a href="#" class="nav-link fw-bold" id="nameButton">Change Name</a></li>
</ul>
</nav>
</div>
</header>
<div id="name" class="mb-3 fw-bold"></div>
<div class="bg-light border rounded-3 p-5 d-flex" id="gridspace-background">
<div class="text-black" id="gridspace">
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.9.2/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/js/bootstrap.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>