-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
40 lines (39 loc) · 1.45 KB
/
Copy pathtable.html
File metadata and controls
40 lines (39 loc) · 1.45 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-SgOJa3DmI69IUzQ2PVdRZhwQ+dy64/BUtbMJw1MZ8t5HZApcHrRKUc4W0kG879m7" crossorigin="anonymous">
</head>
<body>
<table class="table table-striped table-bordered table-hover table-dark text-center">
<tr>
<th> Name</th>
<th> Email</th>
<th> Mobile</th>
</tr>
<tr class="table-warning">
<td>Golu singh</td>
<td> 9798866324</td>
<td> golukumar@gmail.com</td>
</tr>
<tr class="table-danger">
<td>Golu singh</td>
<td> 9798866324</td>
<td> golukumar@gmail.com</td>
</tr>
<tr class="table-info">
<td>Golu singh</td>
<td> 9798866324</td>
<td> golukumar@gmail.com</td>
</tr>
<tr class="table-primary">
<td>Golu singh</td>
<td> 9798866324</td>
<td> golukumar@gmail.com</td>
</tr>
</table>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/js/bootstrap.bundle.min.js" integrity="sha384-k6d4wzSIapyDyv1kpU366/PK5hCdSbCRGRCMv+eplOQJWyd1fbcAu9OCUj5zNLiq" crossorigin="anonymous"></script>
</body>
</html>