29 lines
849 B
HTML
29 lines
849 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>Game Server Manager</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>Choose Your Game</h1>
|
||
|
<div class="games">
|
||
|
<div class="game">
|
||
|
<a href="/hl2">
|
||
|
<img src="/static/hl2cover.jpeg" alt="Half-Life 2" />
|
||
|
<h2>Half-Life 2</h2>
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="game">
|
||
|
<a href="/quake">
|
||
|
<img src="/static/q1cover.jpg" alt="Quake" />
|
||
|
<h2>Quake</h2>
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|