periodic_table_speller/index.html

21 lines
338 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Periodic Table Speller</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<p>
Word: <input type="text" id="enter-word">
<button type="button" id="spell-btn">spell</button>
</p>
<hr>
<div id="word-spelling"></div>
<script type="module" src="js/app.js"></script>
</body>
</html>