Skip to content
This repository was archived by the owner on Mar 25, 2024. It is now read-only.

Commit 53696e3

Browse files
committed
deploy: 3b6fb2e
1 parent 4c017a1 commit 53696e3

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434
href="styles/chart.css"
3535
>
3636

37+
<link
38+
rel="stylesheet"
39+
href="styles/table.css"
40+
>
41+
3742
<link
3843
rel="stylesheet"
3944
href="styles/particles.css"
@@ -159,6 +164,34 @@ <h5 class="card-title">Yearly Vaccinations by Country</h5>
159164
</div>
160165
</div>
161166
</div>
167+
168+
<div class="row gap-4 mt-md-5 mt-4">
169+
<div class="col">
170+
<div class="card card-cust card-cust--chart shadow border border-0">
171+
<div class="card-body">
172+
<table class="table table-striped">
173+
<thead class="table-light">
174+
<tr>
175+
<th scope="col">Country</th>
176+
<th scope="col">Total Cases</th>
177+
<th scope="col">Total Deaths</th>
178+
<th scope="col">Total Recoveries</th>
179+
</tr>
180+
</thead>
181+
182+
<tbody>
183+
<tr>
184+
<th scope="row">Morocco</th>
185+
<td>100</td>
186+
<td>50</td>
187+
<td>50</td>
188+
</tr>
189+
</tbody>
190+
</table>
191+
</div>
192+
</div>
193+
</div>
194+
</div>
162195
</div>
163196
</main>
164197

styles/table.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.table {
2+
margin-bottom: 0;
3+
overflow: hidden;
4+
border-radius: 10px;
5+
}

0 commit comments

Comments
 (0)