Skip to content

Commit

Permalink
Improved Fx
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveyEke committed Feb 27, 2024
1 parent d5b0721 commit 7d217cc
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,22 @@
body{
margin: 200px;
text-align: center;
background-color:pink;

}

#div2{
background-color: aqua;
border: black;
padding: 25px;


}

h2{
font-family: sans-serif;
}

</style>
<title>Currency Exchange</title>

Expand Down Expand Up @@ -44,15 +58,22 @@
</head>

<body>
<div id="div2">
<div id="div1">
<h2 id="heading">Fx Rates Converter</h2>
</div>


<form>
<input id="currency" placeholder="Currency" type="text" >
<input id="currency" placeholder="Input Currency" type="text" >
<input type="submit" value="Convert">
</form>

<div id="result">
<hr>
<h1 id="res">
<h2 id="res">

</h1>
</h2>
<hr>
Note : Input the Currency Code e.g for Euro input 'EUR'
<br>
Expand All @@ -63,6 +84,7 @@ <h1 id="res">
Developed by Dave Eke - [email protected]


</div>
</div>
</body>
</html>

0 comments on commit 7d217cc

Please sign in to comment.