-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
170 lines (167 loc) · 4.58 KB
/
game.html
File metadata and controls
170 lines (167 loc) · 4.58 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Official site for Overclock Studios - Download our latest games and join the revolution." />
<title>Overclock Studios</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background-color: #0f0f0f;
color: #f5f5f5;
}
header {
background: #1a1a1a;
padding: 20px 50px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #00ffcc;
}
header h1 {
margin: 0;
font-size: 2rem;
color: #00ffcc;
}
nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
color: #00ffcc;
}
.hero {
background: url('https://images.unsplash.com/photo-1605902711622-cfb43c4437f1') center/cover no-repeat;
height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.hero h2 {
font-size: 3rem;
color: #fff;
}
.hero p {
font-size: 1.2rem;
color: #ddd;
max-width: 600px;
}
.btn {
padding: 15px 30px;
margin-top: 20px;
background-color: #00ffcc;
color: #000;
font-size: 1.2rem;
border: none;
cursor: pointer;
transition: 0.3s;
}
.btn:hover {
background-color: #00ddb3;
}
.games {
padding: 60px 50px;
background-color: #121212;
}
.games h3 {
text-align: center;
font-size: 2rem;
margin-bottom: 40px;
}
.game-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
}
.game {
background-color: #1f1f1f;
padding: 20px;
border-radius: 10px;
width: 300px;
box-shadow: 0 0 10px #00ffcc55;
}
.game img {
width: 100%;
border-radius: 5px;
}
.game h4 {
margin: 15px 0 10px;
color: #00ffcc;
}
.game p {
color: #ccc;
font-size: 0.95rem;
}
.footer {
background-color: #1a1a1a;
text-align: center;
padding: 30px;
font-size: 0.9rem;
color: #888;
}
.download-btn {
display: inline-block;
margin-top: 10px;
background: #00ffcc;
color: #000;
padding: 10px 15px;
border-radius: 5px;
text-decoration: none;
}
.download-btn:hover {
background-color: #00ddb3;
}
</style>
</head>
<body>
<header>
<h1>Overclock Studios</h1>
<nav>
<a href="#">Home</a>
<a href="#games">Games</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</nav>
</header>
<section class="hero">
<h2>Power Up. Game On.</h2>
<p>The home of high-octane indie gaming. Built by dreamers, for gamers.</p>
<a href="downloads.html" class="btn">Explore Games</a>
</section>
<section class="games" id="games">
<h3>Our Games</h3>
<div class="game-list">
<div class="game">
<img src="https://via.placeholder.com/300x200.png?text=XT+Assault" alt="XT Assault">
<h4>XT Assault</h4>
<p>Fight through cyber warfare in a future ruled by AI. FPS with a twist.</p>
<a href="downloads/xt-assault.zip" class="download-btn">Download</a>
</div>
<div class="game">
<img src="https://via.placeholder.com/300x200.png?text=Drone+Ops+9999" alt="Drone Ops 9999">
<h4>Drone Ops 9999</h4>
<p>Master stealth, precision, and strategy in this tactical drone simulation game.</p>
<a href="downloads/drone-ops.zip" class="download-btn">Download</a>
</div>
<div class="game">
<img src="https://via.placeholder.com/300x200.png?text=XT+Race+Reboot" alt="XT Race Reboot">
<h4>XT Race Reboot</h4>
<p>Speed like never before in the ultimate neon racing universe.</p>
<a href="downloads/xt-race.zip" class="download-btn">Download</a>
</div>
</div>
</section>
<section class="footer" id="contact">
<p>© 2025 Overclock Studios. All rights reserved.</p>
<p>Need help? <a href="mailto:support@overclockstudios.com">Contact Support</a></p>
</section>
</body>
</html>