-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 2.81 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Tic-tac-toe</title>
<script src="https://kit.fontawesome.com/cffa455509.js" crossorigin="anonymous"></script>
<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=Lato:wght@300&display=swap" rel="stylesheet" />
<!-- Favicon stuff mostly generated by https://realfavicongenerator.net/ (I had to make some small changes to the hrefs)-->
<link rel="apple-touch-icon" sizes="180x180" href="./favicon_folder/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./favicon_folder/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./favicon_folder/favicon-16x16.png" />
<link rel="manifest" href="./favicon_folder/site.webmanifest" />
<link rel="mask-icon" href="./favicon_folder/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<link rel="stylesheet" href="styles.css" />
<script src="script.js" defer></script>
</head>
<body>
<header>
<h1>Tic-tac-toe</h1>
</header>
<main>
<div class="form-section">
<h2>Welcome!</h2>
<p class="x-rule-text">In this version of Tic-tac-toe, X goes first.</p>
<div class="buttons-section">
<button class="btn ai-btn">AI</button>
<button class="btn two-players-btn">Two Players</button>
<!-- <form method="POST">
<label for="xPlayerInput">X player's name:</label>
<input type="text" name="xPlayerName" id="xPlayerInput">
<label for="oPlayerInput">O player's name</label>
<input type="text" name="oPlayerName" id="oPlayerInput">
<button type="submit">Start Game</button>
</form> -->
</div>
</div>
</main>
<footer>
<div class="github-link">
<p>Coded by SirIsaacNeutron</p>
<a href="/~https://github.com/SirIsaacNeutron/tic-tac-toe" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
<a class="favicon-link" href="https://www.flaticon.com/free-icons/tic-tac-toe" target="_blank" title="tic tac toe icons">Tic tac toe favicon created by Pixel perfect - Flaticon</a></p>
</footer>
</body>
</html>