-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 1.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>aaia - a as in alfa</title>
<link rel="stylesheet" href="assets/spectre.min.css">
<script src="aaia.ts" type="text/javascript"></script>
</head>
<body>
<div class="container">
<div class="columns">
<div class="column col-lg-auto col-mx-auto col-6">
<h2>aaia - a as in alfa</h2>
<p>put in your word below to get the phonetic alphabet version of it. useful if you need to spell something out on the phone and they can't hear you in <em>insert-country-here</em>.</p>
<label for="ainput">enter you word:</label>
<div class="input-group">
<input class="form-input" type="text" placeholder="booking code" id="ainput" autofocus>
<button id="submit-btn" class="btn btn-primary input-group-btn">submit</button>
<button id="reset-btn" class="btn btn-error input-group-btn">reset</button>
</div>
<br>
<div id="output"></div>
</div>
</div>
</div>
<script src="index.ts"></script>
</body>
</html>