31 lines
851 B
HTML
31 lines
851 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Emoji Evolution: The Single-Player Puzzle</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Emoji Evolution: Your Ultimate Puzzle Experience</h1>
|
|
|
|
<h2>Puzzle Area</h2>
|
|
<div id="puzzle-area">
|
|
<div class="emoji-slot" data-slot="0"></div>
|
|
<div class="emoji-slot" data-slot="1"></div>
|
|
<div class="emoji-slot" data-slot="2"></div>
|
|
</div>
|
|
|
|
<h2>Emoji Bank</h2>
|
|
<div id="emoji-bank"></div>
|
|
|
|
<h2>Solution Check</h2>
|
|
<div class="button-group">
|
|
<button id="reset-btn" class="secondary-button">🔄</button>
|
|
</div>
|
|
<div id="feedback" style="text-align: left; margin-top: 20px; white-space: pre-line;"></div>
|
|
|
|
<script type="module" src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|
|
|