-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·46 lines (42 loc) · 1.98 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator" content="InstantBlueprint.com - Create a web project framework in seconds." />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Currency converter</title>
<meta name="description" content="Add your sites description here" />
<meta name="keywords" content="Add,your,site,keywords,here" />
<link rel="icon" type="image/x-icon" href="images/favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<link rel="stylesheet" type="text/css" href="css/reset.css" media="screen" />
<link rel="stylesheet" type="text/css" href="chosen/chosen.css" media="screen"/>
<link href='http://fonts.googleapis.com/css?family=Spinnaker' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="chosen/chosen.jquery.min.js"></script>
<script type="text/javascript" src="js/money.js"></script>
<script type="text/javascript" src="js/accounting.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<!-- Start: Center Wrap -->
<div class="wrapper">
<!-- Start: container -->
<div class="container">
<h1>Currency Converter using Money.js</h1>
<div class="main">
<input type="text" placeholder="Amount" id="amount"/>
<select name="from" data-placeholder="Currency From..." id="fromSelect">
<option></option>
</select>
<select name="to" data-placeholder="Currency To..." id="toSelect">
<option></option>
</select>
<a href="javascript:;" class="button" id="go">Convert</a>
<!--input type="button" value="Convert" id="go"-->
</div>
<div id="result"></div><div id="toCur"></div>
</div><!-- End: container -->
</div><!-- End: Center Wrap -->
</body>
</html>