24 lines
534 B
HTML
24 lines
534 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
<title>mutate-a-word!</title>
|
|
</head>
|
|
<body>
|
|
<h1>mutate-a-word!</h1>
|
|
<section>
|
|
<h2>Enter a starting word</h2>
|
|
<p>
|
|
<input type="text" id="starting-word" value="" placeholder="e.g. rockets" />
|
|
</p>
|
|
</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>
|