-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (40 loc) · 1.57 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en" >
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-LJPMGPTF97"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-LJPMGPTF97');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Dynamic Nato / ITU / ICAO Phonetic Alphabet & Number Pronouncer</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<audio preload="auto">
<source id="oggSource" src="sounds/like-glass.ogg" type="audio/ogg">
<source id="mp3Source" src="sounds/like-glass.mp3" type="audio/mp3">
Oops! Looks like you're using an old browser, try using a modern browser like Google Chrome, Firefox or even Safari.
</audio>
<div class="container-fluid">
<center><h1 style="font-size: 40px">Dynamic Nato / ITU / ICAO Phonetic Alphabet & Number Pronouncer</h1></center>
<div class="row p-1 sf">
<input type="search" id="big-char" class='form-control input-lg' placeholder="Type Any Alphabet OR Number" title="Type Any Alphabet OR Number" class="form-control" autofocus="autofocus">
</div>
<div class="row p-1">
<div class="results-div" id='results-div'>
<table class="table" id="myTable">
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./script.js"></script>
</body>
</html>