First Attempt Final

This commit is contained in:
Steven Carpenter 2024-08-12 15:54:12 -04:00
commit 8814117c81
6 changed files with 862 additions and 0 deletions

21
index.html Normal file
View file

@ -0,0 +1,21 @@
<!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>