-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable31.html
More file actions
58 lines (56 loc) · 1.2 KB
/
table31.html
File metadata and controls
58 lines (56 loc) · 1.2 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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
table{
border: 1px solid black;
width: 30%;
background-color: rgb(73, 182, 138);
}
tr,th,td{
border: 1px solid black;
border: spacing 5px;;
padding: 10px;
}
</style>
</head>
<body>
<h1>Presenting the Data in HTML table</h1>
<table>
<tr>
<th>Empid</th>
<th>Name</th>
<th>Salary</th>
<th>Incentives</th>
</tr>
<tr>
<td>1</td>
<td>King</td>
<td>56000</td>
<td>10000</td>
</tr>
<tr>
<td>2</td>
<td>Ernst</td>
<td colspan="2">45000</td>
</tr>
<tr>
<td>3</td>
<td>John</td>
<td colspan="2">54000</td>
</tr>
<tr>
<td>4</td>
<td>Max</td>
<td>61000</td>
<td rowspan="2">20000</td>
</tr>
<tr>
<td>5</td>
<td>Paul</td>
<td>43000</td>
</tr>
</table>
</body>
</html>