mutate-a-word/index.html

27 lines
663 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
2022-02-02 01:47:38 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>mutate-a-word!</title>
</head>
<body>
2022-02-02 01:47:38 +00:00
<section id="header">
<h1>mutate-a-word!</h1>
<div id="input-line">
2022-02-02 01:57:28 +00:00
<input type="text" id="starting-word" value="rockets" placeholder="e.g. rockets" />
2022-02-02 01:47:38 +00:00
<button id="starting-regen">🔄</button>
</div>
</section>
<section id="mutations">
<em>Mutations will appear here</em>
</section>
<!---------------->
<link rel="stylesheet" href="./css/theme.css" />
<script src="./js/index.mjs" charset="utf-8" type="module"></script>
</body>
</html>