JSFiddle - React, Tailwind, and code Playground
by falldeaf
HTML
<!DOCTYPE html>
<html>
<head>
<title>Support Page</title>
<style>
body {
font-family: Arial, sans-serif;
}
.content {
width: 80%;
margin: 0 auto;
}
.title {
text-align: center;
font-size: 2em;
margin-top: 50px;
color: #333;
}
.support-desc {
text-align: center;
font-size: 1.2em;
margin-top: 20px;
color: #666;
}
.support-links {
list-style-type: none;
text-align: center;
padding: 0;
margin-top: 30px;
}
.support-links li {
margin-bottom: 10px;
}
.support-links a {
color: #007BFF;
text-decoration: none;
}
.support-links a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="content">
<h1 class="title">Support</h1>
<p class="support-desc">
Are you looking for support for Dark Tides, either the demo or the full game? Get in touch!
</p>
<ul class="support-links">
<li><a href="#">Report a bug: Dark Tides Bug Reporter</a></li>
<li><a href="mailto:[email protected]">Contact us: [email protected]</a></li>
</ul>
</div>
</body>
</html>