forked from sandipmohapatra/sandip-mohapatra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfourth.html
43 lines (43 loc) · 1.16 KB
/
fourth.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Basic Table</h2>
<p>The .table class adds basic styling (light padding and only horizontal dividers) to a table:</p>
<table class="table">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>satya</td>
<td>Kumar</td>
<td>satya@example.com</td>
</tr>
<tr>
<td>ravi</td>
<td>Kumar</td>
<td>ravi@example.com</td>
</tr>
<tr>
<td>mita</td>
<td>mondal</td>
<td>mita@example.com</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>