-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (76 loc) · 2.57 KB
/
index.html
File metadata and controls
78 lines (76 loc) · 2.57 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ICAO spelling alphabet</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="css/queries.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<aside>
<ul>
Letters:
<li>Alfa</li>
<li>Bravo</li>
<li>Charlie</li>
<li>Delta</li>
<li>Echo</li>
<li>Foxtrot</li>
<li>Golf</li>
<li>Hotel</li>
<li>India</li>
<li>Julitee</li>
<li>Kilo</li>
<li>Lima</li>
<li>Mike</li>
<li>November</li>
<li>Oscar</li>
<li>Papa</li>
<li>Quebec</li>
<li>Romeo</li>
<li>Sierra</li>
<li>Tango</li>
<li>Uniform</li>
<li>Victor</li>
<li>Whiskey</li>
<li>X-ray</li>
<li>Yankee</li>
<li>Zulu</li>
</ul>
</aside>
<main class="container">
<header>
<h1>ICAO</h1>
<h2>SPELLING ALPHABET</h2>
<h3>Application spells out messages assigning code words to each letter. The ICAO alphabet contains 26 letters and 10 numbers.</h3>
</header>
<form class="input-form">
<input class="input-box" type="text" placeholder="Type here">
<button class="button" type="submit">SPELL</button>
</form>
<section class="output-box"></section>
<footer>
<button class="buttonCopy"><ion-icon name="copy"></ion-icon> Copy to clipboard</button>
</footer>
</main>
<aside>
<ul>
Numbers:
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
<li>Six</li>
<li>Seven</li>
<li>Eight</li>
<li>Nine</li>
<li>Zero</li>
</ul>
</aside>
<script src="js/app.js"></script>
<script src="https://unpkg.com/ionicons@4.2.6/dist/ionicons.js"></script>
</body>
</html>