forked from amaduela/currency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (92 loc) · 2.67 KB
/
index.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Taxa(s) de Cambio</title>
<link rel="stylesheet" type="text/css" href="dist/css/style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand mr-auto mr-lg-0" href="#">Currency in Moz</a>
<button class="navbar-toggler p-0 border-0" type="button" data-toggle="offcanvas">
<span class="navbar-toggler-icon"></span>
</button>
<!-- <div class="navbar-collapse offcanvas-collapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
</ul>
</div> -->
</div>
</nav>
<main role="main" class="container">
<div class="pricing-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
<h1 class="display-4">Welcome</h1>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae eaque, doloribus qui ullam necessitatibus deleniti architecto odit eum ad tempora, vitae porro assumenda magni. Voluptatem cum assumenda deleniti nostrum voluptas.</p>
</div>
<div class="row">
<div class="col-md-3 bg-white rounded box-shadow">
<h6 class="">Milennium Bim</h6>
<div class="media text-muted pt-3">
<table class="table table-striped">
<thead>
<th>Moeda</th>
<th>Compra</th>
<th>Venda</th>
</thead>
<tbody id="bim">
</tbody>
</table>
</div>
</div>
<div class="col-md-3 bg-white rounded box-shadow">
<h6 class="">Banco Unico</h6>
<div class="media text-muted pt-3">
<table class="table table-striped">
<thead>
<th>Moeda</th>
<th>Compra</th>
<th>Venda</th>
</thead>
<tbody id="unico">
</tbody>
</table>
</div>
</div>
<div class="col-md-3 bg-white rounded box-shadow">
<h6 class="">Standard Bank</h6>
<div class="media text-muted pt-3">
<table class="table table-striped">
<thead>
<th>Moeda</th>
<th>Compra</th>
<th>Venda</th>
</thead>
<tbody id="standard">
</tbody>
</table>
</div>
</div>
<div class="col-md-3 bg-white rounded box-shadow">
<h6 class="">BCI</h6>
<div class="media text-muted pt-3">
<table class="table table-striped">
<thead>
<th>Moeda</th>
<th>Compra</th>
<th>Venda</th>
</thead>
<tbody id="bci">
</tbody>
</table>
</div>
</div>
</div>
</main>
<script type="text/javascript"></script>
</body>
</html>