main_web/nato/index.html
Christopher Edwards 2df8ed0300 add files
2020-10-31 10:51:26 -04:00

24 lines
669 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Phonetic Alphabet Converter</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Nato Phonetic Alphabet</h1>
<input id="input" autocomplete="off" autofocus="autofocus" maxlength="100" type="text">
<div class="button">
<button onclick="convert()">Submit</button>
<button onclick="clearInput()">Clear Input</button>
</div>
<div id="output"></div>
</main>
<script src="index.js"></script>
</body>
</html>