-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (71 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css"
/>
<link rel="icon" type="image/png" href="whale.png" />
<title>Whale Language</title>
<style>
.alert {
color: white;
margin: 5px;
padding: 5px;
}
.success {
background: green;
}
.error {
background: red;
}
.delete {
text-decoration: none;
}
#loading {
display: none;
text-align: center;
}
h3,
p {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="columns">
<h3>Whale Language Converter</h3>
<p>Convert Human Language to Whale Language</p>
<form id="inputForm">
<label>Your Input</label>
<input
class="u-full-width"
type="text"
placeholder="Enter words or sentence to convert....."
id="userInput"
/>
<input class="button-primary" type="submit" value="Convert" />
</form>
<br /><br />
<!-- Loader -->
<div id="loading">
<img src="giphy.gif" alt="" width="150px" />
</div>
<div class="container list-container">
<ul id="convertedInput"></ul>
</div>
<br /><br /><br />
<p style="color: red;">
<span style="font-weight: bold;">NOTE:</span> Whales do not
understand words or sentences without soft vowels 😊
</p>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>