-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 899 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>MidwayUSA - Convert Time to Words</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="main">
<center>
<h1>Time to Text Conversion</h1>
<p>By Joel Abshier</p>
<form>
<input type="number" min="1" max="12" id="hour" value="9" />
<input type="number" min="0" max="59" id="minute" value="15" />
</form>
<br />
<h3>The Time Is... <span id="time"></span></h3>
<script type="text/javascript">
window.onload = function () {
convertTimeToWords(
document.getElementById('hour').value,
document.getElementById('minute').value
);
};
</script>
</center>
</div>
</body>
<script src="script.js" type="text/javascript"></script>
</html>