-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
24 lines (23 loc) · 911 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe Game</title>
<link rel="stylesheet" href="folder/index.css">
<link rel="stylesheet" href="bootstrap-4.5.2/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid" id="body">
<div class="row text-white">
<div class="mx-auto mt-5" id="ticTacToe">
Tic Tac Toe
<br>
<small class="mt-0 pt-0">Game</small>
</div>
</div>
<div class="row" id="rowStartGame"> <a href="folder/play.html" class="mx-auto"><button class="btn btn-light rounded-pill mx-auto text-success" id="startGame">START GAME</button></a></div>
<div class="row"> <div class="div text-white">powered by Beloved...</div></div>
</div>
</body>
</html>