-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 969 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 969 Bytes
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
<!doctype html>
<html lang="en">
<head>
<title>GotChange?</title>
<meta charset="UTF-8">
<meta name="description" content="Got Change App">
<meta name="keywords" content="coin, change, algorithm, javascript">
<meta name="author" content="Henrique Serro">
<link href='css/style.css' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:400'>
</head>
<body>
<div class="input-container">
<input id="inputVal" maxlength="7" />
<p id="res">Please insert an integer or decimal number.</p>
</div>
<script src="js/script.js"></script>
<script>
// create object and init program
var changeObj = new gotChange('inputVal','res');
changeObj.init();
</script>
</body>
</html>