-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #359 from lgbt-sh/cvyl-patch-1-1
- Loading branch information
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Contact & Abuse Reporting - LGBT.SH</title> | ||
<meta name="title" content="Contact & Abuse Reporting - LGBT.SH" /> | ||
<meta name="description" content="Contact us for abuse reports, public suffix list inquiries, or general inquiries regarding LGBT.SH." /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://lgbt.sh/abuse" /> | ||
<meta property="og:title" content="Contact & Abuse Reporting - LGBT.SH" /> | ||
<meta property="og:description" content="Contact us for abuse reports, public suffix list inquiries, or general inquiries regarding LGBT.SH." /> | ||
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/f/fd/LGBTQ%2B_rainbow_flag_Quasar_%22Progress%22_variant.svg" /> | ||
<meta property="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:url" content="https://lgbt.sh/abuse" /> | ||
<meta property="twitter:title" content="Contact & Abuse Reporting - LGBT.SH" /> | ||
<meta property="twitter:description" content="Contact us for abuse reports, public suffix list inquiries, or general inquiries regarding LGBT.SH." /> | ||
<meta property="twitter:image" content="https://upload.wikimedia.org/wikipedia/commons/f/fd/LGBTQ%2B_rainbow_flag_Quasar_%22Progress%22_variant.svg" /> | ||
<style> | ||
body { | ||
font-family: "Arial", sans-serif; | ||
background-color: #F8F8F8; | ||
color: #333; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.container { | ||
text-align: center; | ||
padding: 2em; | ||
} | ||
|
||
h1 { | ||
font-size: 2.5em; | ||
color: #5c2e5c; | ||
text-shadow: 0 0 10px #1f0e1f; | ||
} | ||
|
||
p { | ||
font-size: 1.2em; | ||
line-height: 1.8; | ||
} | ||
|
||
a { | ||
color: #007BFF; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
#footer { | ||
position: fixed; | ||
bottom: 0; | ||
left: 0; | ||
width: 100%; | ||
font-size: 16px; | ||
color: #fff; | ||
background-color: #5c2e5c; | ||
padding: 10px; | ||
text-align: center; | ||
} | ||
|
||
#footer a { | ||
color: #FFD700; | ||
text-decoration: none; | ||
} | ||
|
||
#footer a:hover { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Contact & Abuse Reporting</h1> | ||
<p> | ||
If you need to get in touch with us, please use one of the following email addresses: | ||
</p> | ||
<ul> | ||
<li><b>For Public Suffix List inquiries:</b> <a href="mailto:psl@lgbt.sh">psl@lgbt.sh</a></li> | ||
<li><b>To report abuse:</b> <a href="mailto:abuse@lgbt.sh">abuse@lgbt.sh</a></li> | ||
<li><b>For general inquiries and subdomain registration via email:</b> <a href="mailto:contact@lgbt.sh">contact@lgbt.sh</a></li> | ||
</ul> | ||
<p> | ||
We value your feedback and are here to assist with any concerns or questions you may have. | ||
</p> | ||
<center> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/f/fd/LGBTQ%2B_rainbow_flag_Quasar_%22Progress%22_variant.svg" width="200" alt="LGBT+ Flag"> | ||
</center> | ||
</div> | ||
<div id="footer"> | ||
<p>© 2024 LGBT.SH | <a href="https://lgbt.sh/">Back to Homepage</a></p> | ||
</div> | ||
</body> | ||
</html> |