mirror of
https://github.com/seigler/natospell
synced 2025-07-26 00:26:09 +00:00
25 lines
640 B
HTML
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>
|