25 lines
804 B
HTML
25 lines
804 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="static/css/style.css">
|
|
<title>Arcane Access Console</title>
|
|
</head>
|
|
<body>
|
|
<div class="puzzle-container">
|
|
<h1 class="audiowide-regular">
|
|
<p>Master the pattern to proceed.</p>
|
|
<p>Capture each arcane node in flawless succession.</p>
|
|
</h1>
|
|
<div id="board"></div>
|
|
</div>
|
|
|
|
|
|
<script src="static/js/script.js"></script>
|
|
</body>
|
|
</html> |