-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 2.02 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Discover Fun Games</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
margin: 20px;
background-color: #f8f8f8;
color: #333;
}
h1 {
color: #3498db;
}
button {
padding: 12px 20px;
margin: 8px;
font-size: 18px;
background-color: #3498db;
color: #fff;
border: 2px solid #3498db;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}
button:hover {
background-color: #2980b9;
color: #fff;
}
.game-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
margin-top: 30px;
}
</style>
<link rel="icon" type="image/png" href="./favicon.png">
</head>
<body>
<h1>Discover Fun Games</h1>
<div class="game-container">
<a href="./Dash.github.io-main/Dash.github.io-main/index.html">
<button>Car Game</button>
</a>
<a href="./fighting-game-main/fighting-game-main/index.html">
<button>Fighting Game</button>
</a>
<a href="./kings-and-pigs-main/kings-and-pigs-main/index.html">
<button>Door Opening Game</button>
</a>
<a href="./pacman-main/pacman-main/index.html">
<button>Better Pacman</button>
</a>
<a href="./
Mario Game/Mario Game/index.html">
<button>mario</button>
</a>
<a href="./Flappy-Bird-Game-main/Flappy-Bird-Game-main/index.html">
<button>fake flappybird</button>
</a>
</div>
</body>
</html>