-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (80 loc) · 3.7 KB
/
Copy pathindex.html
File metadata and controls
82 lines (80 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brandon's Cloudflare Test Site</title>
<style>
body {
background-image: url('../content/samus-thin.jpg'); /* Updated background image URL */
background-repeat: no-repeat;
background-position: top left; /* Anchor the background image at the top left corner */
background-size: 100% auto; /* Resize the width to 100% and keep the image's aspect ratio */
font-family: 'Google Sans', sans-serif; /* Change the font to Google Sans */
color: white;
margin: 0;
padding: 0;
}
.navbar {
height: 75px; /* Reduced navbar height */
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for the navbar */
display: flex;
align-items: center;
justify-content: space-between; /* Align items at the start and end of the navbar */
padding: 0 32px; /* Add padding to the left and right sides of the navbar */
}
.navbar img {
width: 75px; /* Reduced image size */
height: 75px; /* Reduced image size */
margin-right: 10px; /* Adjusted spacing between images */
cursor: pointer; /* Add a pointer cursor to indicate clickability */
}
.navbar-subtext {
color: white;
font-size: 16px;
text-align: right; /* Right-align the subtext */
}
.navbar-subtext a {
text-decoration: none; /* Remove hyperlink styling */
color: white; /* Set the text color to white */
}
.header {
text-align: center;
padding: 20px;
}
h1 {
font-size: 36px;
margin: 0;
}
p {
font-size: 18px;
}
</style>
</head>
<body>
<div class="navbar">
<div>
<a href="https://placeholder-url.com"><img src="https://r2.cfbrandon.ninja/cdn-cgi/image/w=75,h=75/content/Cloudflare_Logo.png" alt="Logo"></a>
<a href="https://placeholder-url.com"><img src="https://r2.cfbrandon.ninja/cdn-cgi/image/w=75,h=75/content/Cloudflare_Logo.png" alt="Link 1"></a>
<a href="https://placeholder-url.com"><img src="https://r2.cfbrandon.ninja/cdn-cgi/image/w=75,h=75/content/Cloudflare_Logo.png" alt="Link 2"></a>
<a href="https://placeholder-url.com"><img src="https://r2.cfbrandon.ninja/cdn-cgi/image/w=75,h=75/content/Cloudflare_Logo.png" alt="Link 3"></a>
<a href="https://placeholder-url.com"><img src="https://r2.cfbrandon.ninja/cdn-cgi/image/w=75,h=75/content/Cloudflare_Logo.png" alt="Link 4"></a>
<a href="https://placeholder-url.com"><img src="https://r2.cfbrandon.ninja/cdn-cgi/image/w=75,h=75/content/Cloudflare_Logo.png" alt="Link 5"></a>
<a href="https://placeholder-url.com"><img src="https://r2.cfbrandon.ninja/cdn-cgi/image/w=75,h=75/content/Cloudflare_Logo.png" alt="Link 6"></a>
</div>
<div class="navbar-subtext" id="origin-pool">
<div>Cloudflare Load Balancer</div>
<div style="font-size: 14px;">Origin Pool: <span id="requested-url">placeholder</span></div>
</div>
</div>
<div class="header">
<h1>Brandon's Cloudflare Test Site</h1>
</div>
<script>
// Get the requested URL and update the Origin Pool placeholder
const requestedUrl = window.location.href;
const originPoolText = document.getElementById("requested-url");
originPoolText.textContent = requestedUrl;
</script>
</body>
</html>