-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
39 lines (37 loc) · 1 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Service Hub</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f8f9fa;
font-family: Arial, sans-serif;
}
.access-button {
text-decoration: none;
background-color: #800000;
color: white;
font-size: 2rem;
padding: 20px 40px;
border-radius: 10px;
text-align: center;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
.access-button:hover {
background-color: #5a0000;
}
</style>
</head>
<body>
<a href="public/index.html" class="access-button">Access Service Hub Website</a>
</body>
</html>