-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Home Page</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
h1 {
font-size: 48px;
color: #FF0000;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 20px 40px;
font-size: 24px;
background-color: #4CAF50;
color: white;
text-align: center;
text-decoration: none;
cursor: pointer;
border: none;
border-radius: 8px;
margin: 10px;
}
.button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div>
<h1>Tic Tac Toe</h1>
<a href="./tictactoe.html" class="button">Play with Friend</a>
<a href="./tictactoevscomputer.html" class="button">Play with Computer level easy </a>
<a href="./minmaxtictactoe.html" class="button">Play with Computer Medium</a>
<a href="./tictactoehard.html" class="button">Play with Computer hard</a>
</div>
</body>
</html>