-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp-and-support.html
98 lines (88 loc) · 2.22 KB
/
help-and-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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Help</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Montserrat:[email protected]&display=swap");
*,
ul {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Montserrat", sans-serif;
font-weight: 400;
}
.wrapper {
padding: 1rem;
}
.content {
display: flex;
flex-direction: column;
gap: 16px;
}
p,
span,
li {
font-size: 14px;
color: #212121;
line-height: 120%;
}
.link {
font-size: 14px;
font-weight: 600;
text-decoration: none;
color: #f2970e;
line-height: 120%;
}
.list_content,
.inner_list_wrapper {
margin: 0;
padding: 0;
list-style-type: decimal;
display: flex;
flex-direction: column;
gap: 16px;
list-style-position: inside;
}
.inner_list_wrapper {
padding-top: 16px;
list-style-type: lower-alpha;
}
.inner_list,
.inner_list_content {
list-style-type: disc;
list-style-position: outside;
padding-left: 32px;
padding-top: 16px;
}
.inner_list_content {
padding-top: 4px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="content">
<p>
Hello there! 🌟 <br />
Is something not quite clicking?
</p>
<p>Don’t worry, we’ve got your back!</p>
<p>
Our team is here and thrilled to help you navigate through any
challenges.
</p>
<p>
Drop us a line, share a laugh, or just say hi - we're all ears and
full of solutions!
</p>
<p>Let's make this journey smooth and enjoyable together. 🚀😊</p>
<a class="link" href="#" target="_blank">[email protected]</a>
</div>
</div>
</body>
</html>