Skip to content
Permalink
4b9bdf559b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
30 lines (27 sloc) 684 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Currency Converter</title>
<meta name="description" content="Currency Converter">
<meta name="author" content="Mark J Tyers">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>Currency Converter</h1>
<h2></h2>
Base currency:
<select name="base">
<option value="">--CHOOSE--</option>
</select>
Converted to currency:
<select name="converted">
<option value="">--CHOOSE--</option>
</select>
Amount:
<input type="number" name="amount" />
<h2 id="result"></h2>
<table></table>
</body>
</html>