-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtable.html
40 lines (39 loc) · 808 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
<html>
<head>
<title>css document</title>
<link href="style.css" type="text/css" rel="style/css" />
<style type="text/css">
table {
background-image: url("hetvi 008.jpg");
border-color: #2013ee;
}
th {
color: #e10dcc;
text-align: center;
}
</style>
</head>
<body>
<table border="2" align="center" cell padding="5">
<tr align="center">
<th>Roll no</th>
<th>Full name</th>
<th colspan="3">Marks</th>
</tr>
<tr>
<td>101</td>
<td>Drasti</td>
<td>80</td>
<td>75</td>
<td>96</td>
</tr>
<tr>
<td>102</td>
<td>Riva</td>
<td>70</td>
<td>85</td>
<td>92</td>
</tr>
</table>
</body>
</html>