-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (43 loc) · 1.92 KB
/
index.html
File metadata and controls
52 lines (43 loc) · 1.92 KB
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
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Currency exchange</title>
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
</head>
<body class="flex items-center justify-center min-h-screen bg-gray-100">
<div class="bg-white shadow-lg rounded-lg p-6 w-96">
<h1 class="text-2xl font-bold text-center text-gray-800 mb-4">Currency Exchange</h1>
<label for="amount" class="block text-gray-600">Exchange</label>
<input type="number" id="amount" name="amount"
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 mb-4">
<form id="exchange_form">
<label for="current_currency" class="block text-gray-600">From</label>
<select id="current_currency" name="current_currency"
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 mb-4">
<option value="USD">USD</option>
<option value="EUR">EUR</option>
<option value="COP">COP</option>
<option value="GBP">GBP</option>
</select>
<label for="destinated_currency" class="block text-gray-600">To</label>
<select id="destinated_currency" name="destinated_currency"
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 mb-4">
<option value="COP">COP</option>
<option value="EUR">EUR</option>
<option value="GBP">GBP</option>
<option value="USD">USD</option>
</select>
<button type="submit"
class="w-full bg-blue-500 text-white py-2 rounded-md hover:bg-blue-600 transition">
Exchange
</button>
</form>
<h2 class="text-xl font-semibold text-center text-gray-700 mt-4">Amount</h2>
<p id="result_p" class="text-center text-gray-600 mt-2"></p>
</div>
<script src="script.js"></script>
</body>
</html>