natospell/index.html
2017-01-27 16:58:51 -05:00

25 lines
640 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NatoSpell</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<header>
<h1>NatoSpell</h1>
<p>Type in the field, and a phonetic spelling will appear below. Uses the <a href="https://en.wikipedia.org/wiki/NATO_phonetic_alphabet">NATO phonetic alphabet</a>.</p>
</header>
<main>
<form>
<h2>Type Here:</h2>
<input type="text" value="" id="inputElement" autofocus>
</form>
<section>
<h2>Phonetic:</h2>
<div id="outputElement"></div>
</section>
</main>
<script src="main.js"></script>
</body>
</html>