-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoldconvertertext.txt
56 lines (48 loc) · 1.73 KB
/
goldconvertertext.txt
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
<html>
<title>Gold converter</title>
<body>
<body>
<font size="6" color="gold" face="Algerian">
<h1><u><center>GOLD Converter</center></u></h1><br>
</font>
</body>
<center>
<b><font size="5" 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="4" color="darkblue" face="casteller">
<p>Currency:
</font>
<span id="outputCurrency"></span></p><p>
<script>
function currencyconverter(valNum)
{
document.getElementById("outputCurrency").innerHTML=valNum*3175.60;
}
</script>
</center>
<center>
<b><font size="5" color="silver" 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="4" color="darkg" face="casteller">
<p>Currency:
</font>
<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>
<font size="3" color="green">
<font size="4" color="blue">
<dt><b><u>USER GUIDE:</u></b></dt><br>
</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><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><br></dd>
</font>
</body>
</html>