-
Notifications
You must be signed in to change notification settings - Fork 0
/
zadatak7.html
87 lines (76 loc) · 1.83 KB
/
zadatak7.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="hr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zadatak 7 - tablica</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
table {
border: 5px solid blue;
border-collapse: collapse;
min-height: 600px;
}
th,
td {
border: 2px solid blue;
min-width: 150px;
text-align: center;
font-weight: bold;
font-size: 30pt;
}
td.zuto {
background-color: yellow;
}
td.zuto2 {
background-color: yellow;
}
td.zuto2:hover {
background-color: red;
}
td:hover {
background-color:mediumaquamarine;
cursor: pointer;
}
a {
text-decoration: none;
color: red;
background-color: none;
}
a:visited {
color: blue;
}
a:hover {
color: cyan;
}
a:active {
color: green;
}
</style>
</head>
<body>
<h1>Primjer 8 - tablica</h1>
<table>
<tbody>
<tr>
<td class="zuto" rowspan="4"><a href="https://algebra.hr/">A</a></td>
<td>B</td>
<td class="zuto2" colspan="2">C</td>
</tr>
<tr>
<td colspan="3">D</td>
</tr>
<tr>
<td colspan="2">E</td>
<td rowspan="2">F</td>
</tr>
<tr>
<td class="zuto"><a href="https://google.com" target="_blank">G</a></td>
<td>H</td>
</tr>
</tbody>
</table>
</body>
</html>