-
Notifications
You must be signed in to change notification settings - Fork 0
/
practise.html
61 lines (56 loc) · 1.89 KB
/
practise.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<style>
.mydiv{
border: 1px solid #000;
}
</style>
</head>
<body>
<div class="container border">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<table class="table table-borderless text-center table-hover table-dark">
<thead class="table-primary text-black text-capitalize">
<tr>
<th>name</th>
<th>Email</th>
<th>City</th>
</tr>
</thead>
<tbody>
<tr class="table-muted">
<td>John Doe</td>
<td>[email protected]</td>
<td>New York</td>
</tr>
<tr>
<td>Jane Doe</td>
<td>[email protected]</td>
<td>Los Angeles</td>
</tr>
<tr>
<td>Mike Doe</td>
<td>[email protected]</td>
<td>Chicago</td>
</tr>
<tr></tr>
<td>Mike Doe</td>
<td>[email protected]</td>
<td>Chicago</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
</body>
</html>