-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (128 loc) · 4.16 KB
/
index.html
File metadata and controls
142 lines (128 loc) · 4.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TurbocloudHost | Enterprise Cloud Website Hosting Solutions</title>
<meta name="description" content="High-performance cloud website hosting with 99.99% uptime guarantee. SSD storage, instant scaling, and 24/7 expert support. Start your cloud hosting journey today.">
<meta name="google-site-verification" content="RXhj0ebCLaJmaiqzzBmOuXAFrSgsv6sAeTUtWW-c-os" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebHosting",
"name": "TurbocloudHost",
"url": "https://turbocloudhost.duoservers.com",
"description": "Enterprise-grade cloud hosting solutions with instant scalability",
"offers": {
"@type": "Offer",
"price": "4.99",
"priceCurrency": "USD"
},
"hostingFeatures": [
"SSD Storage",
"DDoS Protection",
"Auto Scaling",
"Global CDN",
"24/7 Support"
]
}
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
background: #f8faff;
color: #2d3436;
}
.header {
padding: 20px 5%;
background: #ffffff;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.hero {
padding: 80px 5%;
text-align: center;
background: linear-gradient(135deg, #f8faff 0%, #e6f1ff 100%);
}
h1 {
font-size: 2.5rem;
color: #2a4a6e;
margin-bottom: 20px;
}
.cta-button {
display: inline-block;
padding: 15px 40px;
background: #2a4a6e;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 1.1rem;
transition: all 0.3s ease;
margin: 25px 0;
border: 2px solid #2a4a6e;
}
.cta-button:hover {
background: #1a3552;
transform: translateY(-2px);
}
.features {
padding: 40px 5%;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
max-width: 1200px;
margin: 0 auto;
}
.feature-card {
padding: 25px;
background: white;
border-radius: 10px;
text-align: center;
box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header class="header">
<div class="logo">TurbocloudHost</div>
</header>
<section class="hero">
<h1>Premium Cloud Website Hosting</h1>
<p>Lightning-fast SSD Storage • Enterprise Security • 24/7 Support</p>
<a href="https://turbocloudhost.duoservers.com/" class="cta-button">Start Cloud Hosting Now</a>
</section>
<section class="features">
<div class="feature-card">
<h3>⚡ Instant Deployment</h3>
<p>Get your website live in under 60 seconds</p>
</div>
<div class="feature-card">
<h3>🛡️ Advanced Security</h3>
<p>Enterprise-grade DDoS protection</p>
</div>
<div class="feature-card">
<h3>📈 Auto Scaling</h3>
<p>Automatic resource scaling during traffic spikes</p>
</div>
<div class="feature-card">
<h3>🌐 Global CDN</h3>
<p>40+ worldwide edge locations</p>
</div>
</section>
<section class="hero" style="padding: 60px 5%; background: #fff;">
<h2>Trusted by 15,000+ Websites</h2>
<p>Free SSL Certificates • Daily Backups • 99.99% Uptime</p>
<a href="https://turbocloudhost.duoservers.com/" class="cta-button">Get Started Today</a>
</section>
</body>
</html>