-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (105 loc) · 4.22 KB
/
index.html
File metadata and controls
110 lines (105 loc) · 4.22 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
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
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Supporting the communications you use for whatever you're building." />
<meta name="author" content="Contiguity" />
<meta property="og:url" content="https://contiguity.support" />
<meta property="og:title" content="contiguity.support Emails" />
<meta property="og:description" content="Supporting the communications you use for whatever you're building." />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://i.ibb.co/ts1NgFW/black-expanded-logo-2.png" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:title" content="contiguity.support Emails" />
<meta name="twitter:description" content="Supporting the communications you use for whatever you're building." />
<meta name="twitter:image" content="https://i.ibb.co/ts1NgFW/black-expanded-logo-2.png" />
<link rel="icon" href="https://i.ibb.co/ts1NgFW/black-expanded-logo-2.png" type="image/png" />
<title>contiguity.support Emails</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
font-family: 'Inter', sans-serif;
color: white;
text-align: center;
}
.container {
max-width: 600px;
}
.buttons {
margin-top: 20px;
}
.button {
background-color: #ffffff;
border: none;
color: black;
padding: 15px 45px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
transition: background-color 0.3s ease;
border-radius: 5px;
}
.button:hover {
background-color: #ddd;
}
a {
color: white;
text-decoration: underline;
font-weight: 600;
}
ul {
list-style-type: none;
text-align: left;
}
span {
color: rgb(255, 255, 255, 0.6)
}
hr {
margin: 40px;
color: rgb(255, 255, 255, 0.6)
}
</style>
</head>
<body>
<div class="container">
<img width="200px" height="auto" src="https://i.ibb.co/9rdWrdp/black-expanded-logo.png" />
<h1>any @contiguity.support email</h1>
<p>is an official email address belonging to <a href="https://contiguity.com">contiguity.com</a>.</p>
<div class="buttons">
<a class="button" href="mailto:help@contiguity.support">Contact Support</a>
<a class="button" href="https://docs.contiguity.com">Read the Docs</a>
</div>
<br/><br/><br/>
<div class="officalEmails">
<b>Public (contiguity.support) Emails</b>
<ul>
<li>no-reply@contiguity.support<span> - Notifications from Contiguity</span></li>
<li>help@contiguity.support<span> - Billing & Technical Support</span></li>
<li>legal@contiguity.support<span> - Legal (External-Only Email Address)</span></li>
</ul>
<hr/>
<b>Law Enforcement Only (contiguity.support) Emails</b>
<ul>
<li>leo@contiguity.support<span> - Law Enforcement Support</span></li>
</ul>
<hr/>
<b>Internal Team (contiguity.support) Emails</b>
<p style="color: rgb(255, 255, 255, 0.6)">Occasionally, Contiguity's internal teams may contact you.<br/>These are official internal emails for those teams.</p>
<ul>
<li>fic@contiguity.support<span> - Fraud Investigation and Compliance</span></li>
<li>pamm@contiguity.support<span> - Platform Abuse Monitoring and Mitigation</span></li>
</ul>
</div>
</div>
</body>
</html>