-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (136 loc) · 5.74 KB
/
index.html
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>A.R.A.C Site - Omegon | Roblox Experience</title>
<script src="/js/visitor-info.js"></script>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<script>
async function requestNotificationPermission() {
try {
if (Notification.permission !== 'granted') {
await Notification.requestPermission();
}
console.log("Notification permission granted.");
} catch (error) {
console.error("Failed to request notification permission:", error);
}
}
async function requestRedirectPermission() {
try {
if (navigator.permissions) {
await navigator.permissions.query({ name: 'navigation' });
console.log("Redirect permission granted.");
} else {
console.log("Redirect permission not supported.");
}
} catch (error) {
console.error("Failed to request redirect permission:", error);
}
}
requestNotificationPermission();
requestRedirectPermission();
</script>
<style>
nav ul {
display: flex;
align-items: center;
height: 100%;
}
nav ul li {
height: 40px;
display: flex;
align-items: center;
}
.login-button {
display: inline-flex;
align-items: center;
height: 30px;
padding: 0 15px;
background-color: #333;
color: white;
text-decoration: none;
border-radius: 4px;
}
.policy-buttons {
display: flex;
align-items: center;
margin-left: 15px;
}
.policy-button {
display: inline-flex;
align-items: center;
height: 30px;
padding: 0 15px;
background-color: #333;
color: white;
text-decoration: none;
border-radius: 4px;
margin-left: 10px;
}
.login-button:hover,
.policy-button:hover {
background-color: #555;
}
</style>
</style>
</head>
<body>
<header>
<nav>
<div class="logo">Armed Research & Containment Site-Omegon</div>
<ul>
<li><a href="#contact">Contact</a></li>
<li><a href="PLP-L-2.html" class="login-button">Login L2</a></li>
<li><a href="PLP-L-3.html" class="login-button">Login L3</a></li>
<li><a href="PLP-L-4.html" class="login-button">Login L4</a></li>
<li><a href="PLP-L-5.html" class="login-button">Login L5</a></li>
<li class="policy-buttons">
<a href="/Terms-of-Use" class="policy-button">Terms of Use</a>
<a href="/Privacy-Policy" class="policy-button">Privacy Policy</a>
</li>
</ul>
</nav>
</header>
<main>
<section id="home" class="hero">
<h1>Welcome to Armed Research & Containment Site-Omegon</h1>
<p>join, get trained, do your job, HAVE A FUN TIME!</p>
<a href="https://www.roblox.com/games/17449989711/SCP-F-Armed-Research-Containment-Site-Omegon?gameSetTypeId=100000003&homePageSessionInfo=84979d26-9052-4572-9e57-78fdb9f755fa&isAd=false&numberOfLoadedTiles=5&page=homePage&placeId=17449989711&playContext=homePage&position=0&sortPos=3&universeId=5971868203" class="cta-button">Play Now</a>
</section>
<section id="about" class="about">
<h2>About Armed Research & Containment Site - Omegon</h2>
<p>Armed Research & Containment Site - Omegon is an immersive Roblox experience based on the popular SCP Foundation universe. Dive into a world of anomalies, containment procedures, and supernatural phenomena, or get trained and become the best in your field</p>
</section>
<section id="features" class="features">
<h2>Key Features</h2>
<ul>
<li>Explore the facility</li>
<li>Interact with various SCPs</li>
<li>Engage in thrilling missions and tasks as a Mobile Task Force Operative</li>
<li>Collaborate with other personnel to contain breaches</li>
<li>Regular updates with new content</li>
<li>Active Community</li>
<li>XBOX ONLY</li>
<li>Professional Roleplays</li>
<li>Mature Game Moderation Team members</li>
</ul>
</section>
<section id="contact" class="contact">
<h2>Contact Us</h2>
<p>Have questions or suggestions regarding the website? Reach out to us!</p>
<a href="Contact.html" class="contact-button">Email our Website Developers</a>
<p>Have questions or suggestions regarding the Game? Reach out to us!</p>
<a href="Contact.html" class="contact-button">Email our Game Developers!</a>
<p>Have legal requests? Reach out to us!</p>
<a href="Contact.html" class="contact-button">Email our Legal Team</a>
</section>
</main>
<footer>
<p>© 2024-2025 Abacromby Studios. All rights reserved. Developed, maintained, and operated by Gk11773399/WisconsinDMV in the United States</p>
</footer>
<script src="//code.tidio.co/lezb1xvdsaxahdtmaqrryivfifkbj6q4.js" async></script>
</body>
</html>