-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (33 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paulo Koglin - Tic Tac Toe</title>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="src/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.slim.js"></script>
</head>
<body>
<header>
<h1>Tic Tac Toe</h1>
</header>
<div class="container-col">
<section id="gameArea">
<div class="container-col">
<input id="name" type="text" placeholder="Enter your name" value="">
<button class="greenButton" onclick="startGame()">New Game</button>
<p>OR</p>
<input id="nameToJoin" type="text" placeholder="Enter your name" value="">
<input id="room" type="text" placeholder="Enter a game ID" value="">
<button class="redButton" onclick="joinGame()">Join Game</button>
</div>
</section>
</div>
<footer>
<p>Developed by Paulo Koglin</p>
</footer>
<script src="/node_modules/socket.io-client/dist/socket.io.js"></script>
<script src="src/js/tictactoe.js"></script>
</body>
</html>