Here’s a structured HTML table with proper styling for the Minecraft server overview and FAQ section:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anarchy Network Overview</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
h1 {
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 30px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
th, td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #4CAF50;
color: white;
}
tr:hover {
background-color: #f1f1f1;
}
.faq {
border: 1px solid #ddd;
padding: 15px;
background-color: #fff;
}
</style>
</head>
<body>
<h1>Welcome to Anarchy Network!</h1>
<table>
<tr>
<th>Key Features</th>
<td>
<ul>
<li>Launch Date: October 11th, 2024</li>
<li>Location: New York City, NY, USA</li>
<li>Server Type: Semi-Anarchy Minecraft Server</li>
<li>Online 24/7</li>
<li>Compatible Versions: Java Minecraft 1.7.2 to 1.21.5 (Recommended: 1.21.4)</li>
<li>World Border: 2 Million blocks (4Mx4M)</li>
<li>No map resets, no teleporting, no P2W</li>
<li>Griefing/PvP allowed</li>
<li>Spawn command for distant players</li>
<li>Nether roof access allowed</li>
<li>Phantoms removed, half the players needed to skip night</li>
</ul>
</td>
</tr>
<tr>
<th>Server IP</th>
<td><a href="http://AnarchyNetwork.net" target="_blank">AnarchyNetwork.net</a></td>
</tr>
<tr>
<th>Discord Server</th>
<td><a href="https://discord.gg/W7hRYgb2z9" target="_blank">Join our Discord</a></td>
</tr>
</table>
<h1>FAQ:</h1>
<div class="faq">
<strong>1. Why do you have rules unlike 2b2t?</strong>
<p>While a server with no rules might be suitable for some, not everyone enjoys an environment filled with spam, lag, and cheaters. This is why we have our four rules: Keep the chat civil, No exploits, No lagging, and No duping items.</p>
<strong>2. If Anarchy Network is true anarchy, why can't I use cheats?</strong>
<p>This is a "Semi-Anarchy" server which means the server differs from pure Anarchy and we have some limitations in place. Cheats are third-party modifications to the game which ruin other players' experience; therefore, cheats are not allowed.</p>
</div>
</body>
</html>
This HTML document provides a clear and organized overview of the Anarchy Network Minecraft server, including key features, server IP, Discord link, and an FAQ section. The styling ensures that the content is visually appealing and easy to read.