-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
58 lines (58 loc) · 1.67 KB
/
support.html
File metadata and controls
58 lines (58 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UniverX Support</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
background: #f4f4f9;
color: #333;
}
header, footer {
text-align: center;
padding: 1em;
background-color: #d3d3d3;
color: black;
}
main {
margin-top: 20px;
padding: 20px;
background: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.contact-methods {
margin-top: 20px;
}
.contact-methods h2 {
color: #333;
}
.contact-link {
margin: 10px;
padding: 10px;
background: #e7e7e7;
display: inline-block;
text-decoration: none;
color: #0056b3;
}
</style>
</head>
<body>
<header>
<h1>Welcome to UniverX Support</h1>
<p>Your satisfaction is important to us. Please use one of the following methods to reach our support team.</p>
</header>
<main>
<section class="contact-methods">
<h2>Contact Us</h2>
<a href="https://github.com/univerx/UniverX/issues" class="contact-link">Submit an Issue via GitHub</a>
<a href="mailto:univerxapp@gmail.com" class="contact-link">Email Us</a>
</section>
</main>
<footer>
<p>Thank you for using UniverX. For more information, visit <a href="https://univerx.hu">our homepage</a>.</p>
</footer>
</body>
</html>