-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-us.html
More file actions
53 lines (45 loc) · 1.3 KB
/
contact-us.html
File metadata and controls
53 lines (45 loc) · 1.3 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Days Since</title>
<link rel="icon" href="./assets/logo.png">
<meta name="description" content="Days Since Contact Us">
<meta name="author" content="Days Since">
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<style>
body {
width: 90%;
max-width: 870px;
margin: 40px auto;
text-align: center;
}
.description {
text-align: left;
margin-top: 40px;
}
.description > div {
margin-bottom: 20px;
}
.description > div > p:first-of-type {
margin-top: 10px;
}
h1, h3 {
color: #4E82B4;
}
h3 {
margin-bottom: 0;
}
</style>
</head>
<body>
<h1>Days Since</h1>
<div class="description">
<div>
<h3>Contact Us</h3>
<p>If you have any questions or suggestions, you can contact us at <i>contact [at] dayssinceapp [dot] com</i></p>
<p>If you contact us through this email, we will see your name and email address. Your information is only to assist us in providing customer support to you and won’t be added to a mailing list or sold to a third-party company. If you wish, you may email us to remove your name and email address from our inbox.</p>
</div>
</div>
</body>
</html>