23 lines
640 B
HTML
23 lines
640 B
HTML
|
<!DOCTYPE html>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<link rel="stylesheet" href="/static/styles.css" />
|
||
|
<title>Quake</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>Quake</h1>
|
||
|
<div class="section">
|
||
|
<h2>Multiplayer Server</h2>
|
||
|
<p>Manage or join the multiplayer servers here.</p>
|
||
|
</div>
|
||
|
<div class="section">
|
||
|
<h2>Coop</h2>
|
||
|
<p>Start or manage cooperative campaigns here.</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|