-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 2.06 KB
/
index.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
<html>
<head>
<title>Србија Подаци</title>
<link rel="icon" href="srbija.svg"/>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" crossorigin=""/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js" integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA==" crossorigin=""></script>
</head>
<body>
<div class="container">
<br>
<span class="lang-href"><a href="index.html">СРПСКИ</a> <a href="./lang/en.html">ENGLISH</a> <a href="./lang/ca.html">CATALAN</a></span>
<h1>Србија Подаци</h1>
<br>
<table class="table table-striped" style="width:100%;">
<thead>
<tr>
<th scope="col">Поље</th>
<th scope="col">Подаци</th>
</tr>
</thead>
<tr>
<th>Главни град</th>
<td>Београд</td>
</tr>
<tr>
<th>Површина</th>
<td>88.361 km²</td>
</tr>
<tr>
<th>Популација</th>
<td>8,653 милиона (2022.)</td>
</tr>
<tr>
<th>Застава</th>
<td><img src="srbija.svg" alt="Србија" style="height: 20px;"></td>
</tr>
</table>
<div id="SrbijaMapa"></div>
<script src="./mapa.js"></script>
</div>
</body>
</html>