27 lines
698 B
HTML
27 lines
698 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
<title>mutate-a-word!</title>
|
|
</head>
|
|
<body>
|
|
<section id="header">
|
|
<h1>mutate-a-word!</h1>
|
|
<h2>Enter a starting word:</h2>
|
|
<div id="input-line">
|
|
<input type="text" id="starting-word" value="rockets" placeholder="e.g. rockets" />
|
|
<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>
|