25 lines
748 B
HTML
25 lines
748 B
HTML
<!doctype html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="styles.css">
|
|
<title>words</title>
|
|
</head>
|
|
<body>
|
|
<h1>words</h1>
|
|
|
|
<div id="game_container">
|
|
</div>
|
|
<div style="display: none"; id="end_screen">
|
|
<h2 id="end_screen_message"></h2>
|
|
<h3 id="end_screen_guesses"></h3>
|
|
<h3 id="end_screen_time"></h3>
|
|
<p> refresh page to play again </p>
|
|
</div>
|
|
|
|
<p> built with ❤ and adequate amounts of care by <a href="https://alv.cx">alv</a> </p>
|
|
|
|
<script type="application/javascript" src="wordlist.js"></script>
|
|
<script type="application/javascript" src="game.js"></script>
|
|
</body>
|