-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (138 loc) · 4.64 KB
/
index.html
File metadata and controls
147 lines (138 loc) · 4.64 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My HTML5 Games/Demos</title>
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="My HTML5 Games/Demos">
<meta property="og:description" content="A collection of my HTML5 browser games like Fly Piñata, Colors Popper, and more!">
<meta property="og:image" content="https://paul-andre.github.io/HTML5-Games/Popper.png">
<meta property="og:url" content="https://paul-andre.github.io/HTML5-Games/">
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="My HTML5 Games/Demos">
<meta name="twitter:description" content="A collection of my HTML5 browser games like Fly Piñata, Colors Popper, and more!">
<meta name="twitter:image" content="https://paul-andre.github.io/HTML5-Games/Popper.png">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 1rem 0;
}
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
padding: 2rem;
max-width: 1200px;
margin: auto;
}
.game-card {
background: white;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
overflow: hidden;
display: flex;
flex-direction: column;
transition: transform 0.2s;
}
.game-card:hover {
transform: translateY(-5px);
}
.game-card img {
width: 100%;
display: block;
}
.game-card-content {
padding: 1rem;
text-align: center;
}
.game-card-content h2 {
margin-top: 0;
font-size: 1.2rem;
}
.buttons {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 0.5rem;
}
.buttons a {
padding: 0.5rem 1rem;
border-radius: 5px;
text-decoration: none;
color: white;
background-color: #007bff;
transition: background-color 0.2s;
}
.buttons a:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<header>
<h1>My HTML5 Games/Demos</h1>
</header>
<main class="games-grid">
<div class="game-card">
<a href="https://paul-andre.github.io/LD24/" target="_blank"><img src="Pinata.png" alt="Fly Piñata Screenshot"></a>
<div class="game-card-content">
<h2>Fly Piñata</h2>
<div class="buttons">
<a href="https://paul-andre.github.io/LD24/" target="_blank">Play Now</a>
<a href="https://github.com/Paul-Andre/LD24" target="_blank">Repo</a>
</div>
</div>
</div>
<div class="game-card">
<a href="https://paul-andre.github.io/ShapesPopper/publicMin/" target="_blank"><img src="Popper.png" alt="Colors Popper Screenshot"></a>
<div class="game-card-content">
<h2>Colors Popper</h2>
<div class="buttons">
<a href="https://paul-andre.github.io/ShapesPopper/publicMin/" target="_blank">Play Now</a>
<a href="https://github.com/Paul-Andre/ShapesPopper" target="_blank">Repo</a>
</div>
</div>
</div>
<div class="game-card">
<a href="https://paul-andre.github.io/spinTurret/" target="_blank"><img src="SpinTurret.png" alt="SpinTurret Screenshot"></a>
<div class="game-card-content">
<h2>SpinTurret</h2>
<div class="buttons">
<a href="https://paul-andre.github.io/spinTurret/" target="_blank">Play Now</a>
<a href="https://github.com/Paul-Andre/spinTurret" target="_blank">Repo</a>
</div>
</div>
</div>
<div class="game-card">
<a href="https://paul-andre.github.io/sacrifice-walls/" target="_blank"><img src="Sacrifice.png" alt="Sacrifice Walls Screenshot"></a>
<div class="game-card-content">
<h2>Sacrifice Walls</h2>
<div class="buttons">
<a href="https://paul-andre.github.io/sacrifice-walls/" target="_blank">Play Now</a>
<a href="https://github.com/Paul-Andre/sacrifice-walls" target="_blank">Repo</a>
</div>
</div>
</div>
<div class="game-card">
<a href="https://unflipgame.com/" target="_blank"><img src="Unflip.png" alt="Unflip/Unsquare Screenshot"></a>
<div class="game-card-content">
<h2>Unflip/Unsquare</h2>
<div class="buttons">
<a href="https://unflipgame.com/" target="_blank">Play Now</a>
</div>
</div>
</div>
</main>
</body>
</html>