-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite 2.html
66 lines (61 loc) · 1.39 KB
/
website 2.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
<DOCTYPE html5>
<html>
<head>
<title>Stran 2</title>
</head>
<body>
<!-- Primer stila tabele -->
<style> table, th, td {
border: 1px solid black;
}
</style>
<h1>
Tabela
</h1>
<table style="width: 100%">
<tr>
<th>COM JST</th>
<th>COM TI</th>
<th>COM MI</th>
</tr>
<tr>
<td>LG</td>
<td>di"v"jak</td>
<td>ŠC5-ka</td>
</tr>
</table>
<p>
Naučil sem se kako narediti tabelo z naslovi stolpcev in celicami vrednosti. Naučil sem se tudi kako
narediti iz dodatno oblikovati tabelo z css.
</p>
<table border="1">
<tr>
<th>Levo poravnan 100%</th>
<th>Desno poravnan 100%</th>
<th>Sredinsko poravnan 100%</th>
</tr>
<tr>
<td align="left">LG</td>
<td align="right">di"v"jak</td>
<td align="center">ŠC5-ka</td>
</tr>
<tr>
<td align="left">Jozlica</td>
<td align="right">Kvihtar</td>
<td align="center">Zaspanc</td>
</tr>
</table>
<table border="1">
<tr>
<th>Ime</th>
<td>Lovro</td>
<td>Žiga</td>
</tr>
<tr>
<th>Priimek</th>
<td>Šturm</td>
<td>Spinel</td>
</tr>
</table>
</body>
</html>