Commit 59896b09 by abalsh

Fiat Converter without JS, first draft

parent c34079b7
Showing with 45 additions and 2 deletions
......@@ -27,4 +27,47 @@
<a class="nav-link" href="charts.html">Charts</a>
<a class="nav-link" href="subscribe.html">Subscribe</a>
</nav>
</div>
\ No newline at end of file
</div>
<br>
<br>
<br>
<div class="card">
<div class="card-body">
<div class="form-group">
<label for="FormControlSelect1">Convert From</label>
<br>
<select class="form-control" id="FormControlSelect1">
<option>USD</option>
<option>EUR</option>
<option>GBP</option>
<option>NOK</option>
<option>SEK</option>
<option>CHF</option>
<option>AED</option>
</select>
</div>
<input type="number" class="form-control form-control-lg mx-3" value="">
<div class="form-group">
<br> <br>
<label for="FormControlSelect1">To</label>
<br>
<select class="form-control" id="FormControlSelect1">
<option>USD</option>
<option>EUR</option>
<option>GBP</option>
<option>NOK</option>
<option>SEK</option>
<option>CHF</option>
<option>AED</option>
</select>
</div>
<input type="number" class="form-control form-control-lg mx-3" value="">
<br> <br>
<div class="p-t-10">
<button class="btn btn--pill btn--green" type="submit">Convert!</button>
</div>
</div>
</div>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment