-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTable.html
53 lines (52 loc) · 1.5 KB
/
Table.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
<!DOCTYPE html>
<html>
<head>
<title>Table</title>
<style>
table {
width: 800px;
margin: auto;
border: 1px solid blue;
text-align: center;
line-height: 25px;
}
</style>
</head>
<body>
<table border="2px">
<caption>
My Data Table
</caption>
<tr>
<th>Sl. No.</th>
<th>Site</th>
<th>Link</th>
</tr>
<tr>
<td>1</td>
<th>Facebook</th>
<td><a href="https://www.facebook.com/" target="_blank">Facebook</a></td>
</tr>
<tr>
<td>2</td>
<th>Amazon</th>
<td><a href="https://www.amazon.in/" target="_blank">Amazon</a></td>
</tr>
<tr>
<td>3</td>
<th>Flipkart</th>
<td><a href="https://www.flipkart.com/" target="_blank">Flipkart</a></td>
</tr>
<tr>
<td>4</td>
<th>Geekster</th>
<td><a href="https://geekster.in/" target="_blank">Geekster</a></td>
</tr>
<tr>
<td>5</td>
<th>Apparel World</th>
<td><a href="https://soninisha.github.io/apparel-world/" target="_blank">Apparel World</a></td>
</tr>
</table>
</body>
</html>