-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Example Title</title>
<meta name="author" content="Your Name">
<meta name="description" content="Example description">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div class="center-wrapper-parent">
<div class="canvas-wrapper">
<canvas id="tic-tac-toe-board" class="center-v"></canvas>
</div>
<div style="text-align: center;
font-family: 'Montserrat', sans-serif;
font-size: 50%;
padding: 1rem">
<h1>Designed by Kimani Walters in
<a style="text-decoration: none;"
href="https://codepen.io/solartic/pen/qEGqNL">Codepen.io</a>
</h1>
</div>
</div>
<script type="text/javascript" src="scripts.js"></script>
<script src="node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script>
</body></html>