-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
182 lines (172 loc) · 4.88 KB
/
index.html
File metadata and controls
182 lines (172 loc) · 4.88 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
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Overclock Studios - Home</title>
<meta name="description" content="Welcome to Overclock Studios, home of the most XTREME indie games.">
<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: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('') center/cover no-repeat;
height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.hero h2 {
font-size: 3.5rem;
color: #00ffcc;
margin-bottom: 10px;
}
.hero p {
font-size: 1.2rem;
color: #ddd;
max-width: 600px;
}
.btn {
padding: 15px 30px;
margin-top: 30px;
background-color: #00ffcc;
color: #000;
font-size: 1.2rem;
border: none;
cursor: pointer;
text-decoration: none;
border-radius: 5px;
transition: 0.3s;
}
.btn:hover {
background-color: #00ddb3;
}
.features, .newsletter, .social, .cta {
background-color: #121212;
padding: 60px 50px;
text-align: center;
}
.features h3, .newsletter h3, .cta h3 {
color: #00ffcc;
font-size: 2rem;
margin-bottom: 30px;
}
.features p, .newsletter p, .cta p {
font-size: 1rem;
max-width: 700px;
margin: auto;
color: #bbb;
}
.social-icons {
margin-top: 20px;
}
.social-icons a {
color: #00ffcc;
font-size: 1.5rem;
margin: 0 10px;
transition: color 0.3s;
}
.social-icons a:hover {
color: #ffffff;
}
.newsletter input[type="email"] {
padding: 10px;
width: 250px;
border: none;
border-radius: 5px;
margin-top: 10px;
}
.newsletter button {
padding: 10px 20px;
margin-left: 10px;
background-color: #00ffcc;
border: none;
color: #000;
font-weight: bold;
cursor: pointer;
border-radius: 5px;
}
footer {
background-color: #1a1a1a;
text-align: center;
padding: 30px;
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<header>
<h1>Overclock Studios</h1>
<nav>
<a href="index.html">Home</a>
<a href="game.html">Games</a>
<a href="downloads.html">Downloads</a>
<a href="contact.html">Contact</a>
<a href="about.html">About</a>
</nav>
</header>
<section class="hero">
<h2>Welcome to Overclock Studios</h2>
<p>Where every game explodes with power, purpose, and pixels. Enter our world of XTREME gaming.</p>
<a href="games.html" class="btn">Play Now</a>
</section>
<section class="features">
<h3>🎮 What We Offer</h3>
<p>We design cutting-edge indie titles that push limits. Explore dynamic combat, high-speed racing, drone strategy, and more — all handcrafted for serious gamers.</p>
<a href="downloads.html" class="btn" style="margin-top: 20px;">Get the Games</a>
</section>
<section class="cta">
<h3>🚀 Join the Overclock Revolution</h3>
<p>Get exclusive early access, behind-the-scenes content, and updates from the dev team.</p>
<a href="mailto:contact@overclockstudios.com" class="btn">Email Us Directly</a>
</section>
<section class="newsletter">
<h3>📬 Subscribe to Our XT Newsletter</h3>
<p>Be the first to know about game drops, updates, contests & more.</p>
<input type="email" placeholder="Your email address">
<button>Subscribe</button>
</section>
<section class="social">
<h3>🌐 Follow Us</h3>
<div class="social-icons">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<a href="#"><i class="fab fa-discord"></i></a>
<a href="#"><i class="fab fa-tiktok"></i></a>
</div>
</section>
<footer>
© 2025 Overclock Studios. All rights reserved.<br>
Contact: <a href="mailto:support@overclockstudios.com">support@overclockstudios.com</a>
</footer>
</body>
</html>