-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask-3.html
More file actions
51 lines (50 loc) · 1.29 KB
/
task-3.html
File metadata and controls
51 lines (50 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<title>Tables; html+css-task</title>
</head>
<body>
<table border="1">
<tr style="background-color: blue; color: white;">
<th>Firstname</th>
<th>Lastname</th>
<th>Salary</th>
</tr>
<tr style="color: gray;">
<td>Togrul</td>
<td>Zeynalli</td>
<td>2000$</td>
</tr>
<tr style="background-color: aqua; color: blue;">
<td>Fariz</td>
<td>Agamaliyev</td>
<td>20000$</td>
</tr>
<tr style="color: gray;">
<td>Gunduz</td>
<td>Imanli</td>
<td>4000$</td>
</tr>
<tr style="background-color: aqua; color: blue;">
<td>Murad</td>
<td>Kahayev</td>
<td>1e3$</td>
</tr>
<tr style="color: gray;">
<td>Vusal</td>
<td>Abbasov</td>
<td>6000$</td>
</tr>
<tr style="background-color: aqua; color: blue;">
<td>Said</td>
<td>Zahidov</td>
<td>20000$</td>
</tr>
<tr style="background-color: brown; color: aqua;">
<td>Fuad</td>
<td>Mammadov</td>
<td>70000$</td>
</tr>
</table>
</body>
</html>