-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab2.html
49 lines (49 loc) · 1.18 KB
/
lab2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="2", cellpadding="5", cellspacing="4", align="center">
<tr bgcolor="purple">
<th>Employee ID</th>
<th>Employee Name</th>
<th>Department</th>
<th>Basic</th>
<th>Da</th>
<th>HRA</th>
<th>PF</th>
</tr>
<tr align="center">
<td>E001</td>
<td>Peter</td>
<td>Sales</td>
<td>12300</td>
<td>2%</td>
<td>3%</td>
<td>4%</td>
</tr>
<tr align="center">
<td>E002</td>
<td>Sam</td>
<td>training</td>
<td>14000</td>
<td>3%</td>
<td>2%</td>
<td>4%</td>
</tr>
<tr align="center">
<td>E003</td>
<td>Edgar</td>
<td>Accounts</td>
<td>11000</td>
<td>4%</td>
<td>4%</td>
<td>5%</td>
</tr>
</table>
</body>
</html>