-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Games</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 24px;
margin-bottom: 10px;
}
a {
text-decoration: none;
font-size: 24px;
color: #0066cc;
margin-bottom: 10px;
}
a:hover {
color: #0099ff;
}
</style>
</head>
<body>
<div>
<h1>HTML Games</h1>
<p>Created by Your Name</p>
<a href="minesweeper.html">Minesweeper</a>
<br>
<a href="Tic-Tac-Toe.html">Tic-Tac-Toe</a>
</div>
</body>
</html>