Skip to content

Commit 29273d2

Browse files
Update index.html
Granville Digital Empire
1 parent 73800ec commit 29273d2

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed

index.html

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,95 @@ <h2>Connect With Us</h2>
137137

138138
</body>
139139
</html>
140+
<!-- START OF NEW CODE -->
141+
<!DOCTYPE html>
142+
<html lang="en">
143+
<head>
144+
<meta charset="UTF-8" />
145+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
146+
<title>Granville Digital Empire</title>
147+
<style>
148+
body {
149+
margin: 0;
150+
font-family: Arial, sans-serif;
151+
color: white;
152+
background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1950&q=80') no-repeat center center fixed;
153+
background-size: cover;
154+
}
155+
header {
156+
padding: 60px 20px 30px;
157+
text-align: center;
158+
background: rgba(0, 0, 0, 0.6);
159+
}
160+
header h1 {
161+
font-size: 3em;
162+
animation: glow 2s ease-in-out infinite alternate;
163+
}
164+
header p {
165+
font-size: 1.2em;
166+
}
167+
@keyframes glow {
168+
from { text-shadow: 0 0 10px #fff; }
169+
to { text-shadow: 0 0 20px #0ff, 0 0 30px #0ff; }
170+
}
171+
.avatar {
172+
position: absolute;
173+
top: 20px;
174+
left: 20px;
175+
width: 80px;
176+
border-radius: 50%;
177+
border: 3px solid white;
178+
}
179+
section {
180+
padding: 40px;
181+
background: rgba(0, 0, 0, 0.7);
182+
}
183+
h2 {
184+
border-bottom: 2px solid #0ff;
185+
padding-bottom: 10px;
186+
}
187+
ul {
188+
list-style: none;
189+
padding: 0;
190+
}
191+
ul li {
192+
padding: 8px 0;
193+
}
194+
footer {
195+
text-align: center;
196+
padding: 20px;
197+
background: rgba(0, 0, 0, 0.8);
198+
font-size: 0.9em;
199+
}
200+
</style>
201+
</head>
202+
<body>
203+
<img src="https://i.imgur.com/l7zQ0pG.png" alt="Granville Avatar" class="avatar" />
204+
<header>
205+
<h1>Granville Digital Empire</h1>
206+
<p>We Build Professional Apps and Websites for Local Businesses</p>
207+
</header>
208+
<section>
209+
<h2>Our Services</h2>
210+
<ul>
211+
<li>📱 Mobile App Development</li>
212+
<li>💼 Business Website Design</li>
213+
<li>🎯 Brand Consulting</li>
214+
<li>💰 Affiliate Marketing Campaign Setup</li>
215+
</ul>
216+
</section>
217+
<section>
218+
<h2>🚀 Coming Soon</h2>
219+
<p>More Powerful Apps & Business Tools Coming Soon from Granville Digital Empire</p>
220+
</section>
221+
<section>
222+
<h2>Contact Us</h2>
223+
<p>📞 060 334 7298<br />
224+
📧 granvillewagenaar160@gmail.com</p>
225+
</section>
226+
<footer>
227+
<p>© 2025 Granville Digital Empire | Follow us on TikTok, YouTube, WhatsApp</p>
228+
</footer>
229+
</body>
230+
</html>
231+
<!-- END OF NEW CODE -->

0 commit comments

Comments
 (0)