-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolortable.html
More file actions
47 lines (43 loc) · 1.02 KB
/
colortable.html
File metadata and controls
47 lines (43 loc) · 1.02 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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Simple Table with Alternate Row Coloring.</title>
<link rel="stylesheet" href="color.css">
</head>
<body>
<table border="1">
<tr>
<th rowspan="2">SN.</th>
<th colspan="2">Name</th>
<th rowspan="2">Address</th>
<th rowspan="2">Phone No.</th>
</tr>
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>
<tr>
<td>1</td>
<td>sania</td>
<td>pathak</td>
<td>cananda</td>
<td>9800000000 <br> 982222222</td>
</tr>
<tr>
<td>2</td>
<td>Mannat</td>
<td>Basnet</td>
<td>Butwal</td>
<td>92929102191 <br> 98623817318</td>
</tr>
<tr>
<td>3</td>
<td>Bhugol</td>
<td>Panta</td>
<td>Pokhara</td>
<td>9830126621 <br> 9826376289</td>
</tr>
<tr>
</table>
</body>
</html>