-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGOLDCONVERTER.html
65 lines (56 loc) · 1.85 KB
/
GOLDCONVERTER.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<title>Gold converter</title>
<body>
<style>
body{
background-image: url("goldc.jpg");
background-size:cover;
}
</style>
<body>
<b>
<font size="7" color="marine" face="Algerian">
<h1><u><center>GOLD Converter</center></u></h1><br>
</b>
</font>
</body>
<center>
<b><font size="6" color="red" style="casteller"><u>Gold Quantity convert into Currency:</u></font></b><br><br> <br>
<input id="inputGolds" type="number" placeholder="Gold Quantity" oninput="currencyconverter(this.value)" onchange="currencyconverter(this.value)">
<font size="5" color="darkblue" face="casteller"><b><u>
<p>Currency:
</font></b></u>
<span id="outputCurrency"></span></p><p>
<script>
function currencyconverter(valNum)
{
document.getElementById("outputCurrency").innerHTML=valNum*3175.60;
}
</script>
</center>
<center>
<b><font size="6" color="voilet" style="casteller"><u>Gold Quantity convert into Currency:</u></font></b><br><br> <br>
<input id="inputCurrency" type="number" placeholder="Currency value" oninput="goldconverter(this.value)" onchange="goldconverter(this.value)">
<font size="5" color="green" face="casteller"><b><u>
<p>Gold:
</font></b></u>
<span id="outputGold"></span></p><p>
<script>
function goldconverter(valNum)
{
document.getElementById("outputGold").innerHTML=valNum/3175;
}
</script>
</center>
<br><br><br><br><br><br><br>
<b><font size="4" color="rose">
<font size="4" color="blue">
<dt><b><u>USER GUIDE:</u></b></dt>
</font>
<dt><b><u>Quantity convert to Gold:</u></b></dt>
<dd> This column is tell Gold value in currency.If you enter the Quantity.It will convert the Gold Quantity into Money. <br></dd>
<dt><b><u>Currency convert to Gold:</u></b></dt>
<dd> This column is tell Currency value in Gold.If you enter the Gold Quantity.It will convert Money into Gold Quantity. <br><</dd>
</font></b>
</body>
</html>