-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjs_numbersToLetters.htm
More file actions
21 lines (21 loc) · 863 Bytes
/
js_numbersToLetters.htm
File metadata and controls
21 lines (21 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<title>Numbers to Letters</title>
<link rel="stylesheet" href="styles.css" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700,300' rel='stylesheet' type='text/css'>
<title>Numbers To Letters</title>
</head>
<body>
<h1>Transform your numbers to letters!</h1>
<p>Enter some text below containing digital numbers (1, 324, 93). If the number is between 0 and 999, the tool will transform it into letters (one, three hundred twenty-four, ninety-three). Otherwise, it will leave it alone.</p>
<div id="indiv">
<h4>Original Text:</h4>
<textarea id="myTextarea" rows="5" ></textarea>
<p><input type="button" id="inputButton" value="Enter"></input></p>
</div>
<div id="outdiv">
<h4>Transformed Text:</h4>
</div>
<script src="numbersToLetters.js"></script>
</body>
</html>