-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 976 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>vite-typescript-tailwind-boilerplate</title>
</head>
<body class="flex flex-col items-center">
<script defer type="module" src="/src/main.ts"></script>
<h1 class="text-3xl font-bold mt-10">
Tic Tac Toe Time!
</h1>
<div class="flex gap-10 mt-10">
<div id="player1" class="flex font-bold p-2 gap-1 bg-slate-300 rounded-md items-center">
<p>Player x<p>
<div id="player1Score" class="bg-slate-100 px-1 rounded-md">0</div>
</div>
<div id="player2" class="flex font-bold p-2 gap-1 bg-slate-300 rounded-md items-center">
<p>Player o<p>
<div id="player2Score" class="bg-slate-100 px-1 rounded-md">0</div>
</div>
</div>
<button id="resetButton" class="mt-10 rounded-md px-3 py-1 font-bold bg-red-300">Reset</button>
</body>
</html>