-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
71 lines (63 loc) · 891 Bytes
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<style>
table,td,th{
border:1px solid black;
border-collapse:collapse;
}
td,th {
border-color:1px solid black;
text-align:left;
padding:5px;
}
th {
text-align:center;
}
#t01 tr:nth-child(even) {
width:100%;
background-color:#eee;
}
#t01 tr:nth-child(odd) {
width:100%;
background-color:#fff;
}
#t01 th{
color:white;
background-color:black;
}
</style>
</head>
<body>
<h2>html table</h2>
<table style ="width:100%">
<table id="t01">
<caption>marksheet</caption>
<tr>
<th>NAME</th>
<th>roll no</th>
<th>dept</th>
</tr>
<tr>
<td>Santosh shrivastav</td>
<td>20</td>
<td>ece</td>
</tr>
<tr>
<td>shiv</td>
<td>30</td>
<td>it</td>
</tr>
<tr>
<td>krishna</td>
<td>25</td>
<td>ece</td>
</tr>
<tr>
<td>bishnu</td>
<td>40</td>
<td>cse</td>
</tr>
</table>
</body>
</html>