-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Numeralizer</title>
<meta name="author" content="Alex Jackson">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="A tool for converting numbers to numerals.">
<link href='http://fonts.googleapis.com/css?family=Playfair+Display|Muli' rel='stylesheet' type='text/css'>
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<div class="header">
<h1>Numeralizer</h1>
<p>A simple tool to convert numbers to numerals. <a href="http://www.xanderjack.com">Back.</a></p>
</div>
<div class="app-wrap">
<div class="generator">
<input id="number" placeholder="Number" onkeyup="numberToNumeral();"></input>
</div>
<div class="result">
<p id="numeral">Enter a number</p>
</div>
</div>
<script language="javascript" type="text/javascript" src="assets/js/functions.js"></script>
</body>
</html>