-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.html
38 lines (38 loc) · 1009 Bytes
/
support.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Support - After Hours</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
padding: 20px;
}
h1 {
text-align: center;
}
.support-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #121212;
border-radius: 10px;
border: 1px solid #444;
}
</style>
</head>
<body>
<h1>Support</h1>
<div class="support-container">
<p>Need assistance? We're here for you 24/7.</p>
<p>
Visit our <a href="faq.html" style="color: #fff;">FAQ</a> for common issues or use our live chat
feature for immediate support.
</p>
</div>
</body>
</html>