-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (61 loc) · 1.96 KB
/
index.html
File metadata and controls
68 lines (61 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RapidPlex Hosting</title>
<meta name="description" content="RapidPlex is a cloud hosting provider built for scalability, high availability, performance, and security.">
<link rel="canonical" href="https://rapidplex.com/">
<link rel="icon" type="image/x-icon" href="https://i.dnva.me/90a01a880b82f2a-favicon-rapidplex.png">
<style>
body {
background-color: #000000;
margin: 0;
font-family: Arial, sans-serif;
color: white;
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
padding: 20px;
}
.hero-image {
width: 100%;
max-width: 800px;
height: auto;
margin: 5% auto 3% auto;
box-shadow: 0 0 8px 8px rgb(0, 0, 0) inset;
background-image: url(https://i.dnva.me/1fd93368a344e70-AMD.jpg);
background-size: cover;
background-position: center;
aspect-ratio: 16/9;
}
.logo {
max-width: 300px;
width: 100%;
height: auto;
margin: 0 auto;
}
@media only screen and (max-width: 799px) {
.hero-image {
width: 90%;
margin: 10% auto 5% auto;
}
.logo {
max-width: 200px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="hero-image" role="img" aria-label="High performance cloud hosting"></div>
<div class="logo-container">
<img src="https://i.dnva.me/0696b90f6f8cdec-rapidplex.png"
alt="RapidPlex Logo"
class="logo">
</div>
</div>
</body>
</html>