-
Notifications
You must be signed in to change notification settings - Fork 1
/
game.html
38 lines (37 loc) · 872 Bytes
/
game.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Tic-Tac-Toe Game</title>
<script src="game.js"></script>
<style>
button{
font-size: 40px;
margin-left: 2%;
cursor: pointer;
}
body{
text-align: center;
margin-top: 8%;
}
h1{
font-size: 40px;
}
h2{
font-size: 70px;
color: red;
}
h3{
font-size: 30px;
margin-bottom: 5%;
}
</style>
</head>
<body>
<h1>Let's Play the evergreen</h1>
<h2>Tic Tac Toe Game</h2>
<h3>Select Mode</h3>
<button type="button" name="button" onclick="single()">Single Player</button>
<button type="button" name="button" onclick="multi()">Multi Player</button>
</body>
</html>