-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtableBootstrap.html
More file actions
22 lines (21 loc) · 928 Bytes
/
Copy pathtableBootstrap.html
File metadata and controls
22 lines (21 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>bootstrap table</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="table-responsive">
<table class="table table-bordered table-striped table-hover">
<tr><th>city</th><th>state</th></tr>
<tr><td>mumbai</td><td>maharashtra</td></tr>
<tr class="warning"><td>kolkata</td><td>west bengal</td></tr>
<tr><td>dehradun</td><td>uttrakhand</td></tr>
</table>
</div>
</body>
</html>