-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatus.html
More file actions
31 lines (29 loc) · 815 Bytes
/
Status.html
File metadata and controls
31 lines (29 loc) · 815 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Status Page</title>
<style>
/* Adjusting the iframe size to fit within the page */
body {
background-color: #1f1f1f; /* Dark background color */
color: #ffffff; /* Text color for better readability */
font-family: Arial, sans-serif; /* Font style */
margin: 0;
padding: 0;
}
h1 {
text-align: center;
}
iframe {
width: 100%;
height: 800px; /* Adjust the height as needed */
display: block;
border: none; /* Remove border around the iframe */
}
</style>
</head>
<body>
<h1>Swift Peak Hosting Status</h1>
<iframe src="https://status.swiftpeakhosting.co.uk"></iframe>
</body>
</html>