-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
35 lines (34 loc) · 1.25 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Table</title>
<meta charset="utf-8">
<meta name= "author" content="Dijana Đuran">
<meta name="description" content="This is my frontend cheat sheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="prism.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="wrapped">
<h1>Ponavljanje tablice</h1>
<table border="1">
<tr>
<td colspan="2">1</td>
<td rowspan="3" >2</td>
</tr>
<tr >
<td>3</td>
<td rowspan="2">4</td>
</tr>
<td >5</td>
</tr>
</table>
<p><a href="./index.html">Vrati se na Glavnu stranicu</a></p>
</div>
<script src="prism.js"></script>
</body>
</html>