-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
31 lines (31 loc) · 1.06 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
<!doctype html>
<html>
<!-- Currency Conversion Calculator
by Devon Blandin, April 2012
for IT 238, Spring Quarter 2012 -->
<head>
<meta charset="UTF-8">
<title>Currency Conversion Calculator</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<header>
<h1><a href="http://devonblandin">Devon Code Shop</a> | IT 238 Assignments</h1>
</header>
<section>
<h1><a href="http://facsrv.cs.depaul.edu/~cmiller/it238/assn1.html">Assignment 1</a>: Currency Conversion Calculator</h1>
<noscript class="error">Enable Javascript to use this tool.</noscript>
<div class="formRow">
<select id="fromCurrencyChoice"><option>Loading...</option></select>
<input type="button" id="swapCurrencyButton" />
<select id="toCurrencyChoice"><option>Loading...</option></select>
</div>
<div class="formRow">
<input id="currencyAmountChoice" value=1 disabled />
</div>
<p id="result"></p>
</section>
</body>
</html>