-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
executable file
·41 lines (37 loc) · 1.01 KB
/
home.php
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="navbar">
<a href="/home.php">Domov</a>
<div class="dropdown">
<button class="dropbtn">Ozvocenje prireditev
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/ozv-paketi.php">Paketi</a>
<a href="/mnenja.php">Mnenja</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Izposoja opreme
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="/izp-paketi.php">Paketi</a>
<a href="/oprema.php">Oprema</a>
</div>
</div>
<a href="o-nas.php">O nas</a>
<a href="kontakt.php">Kontakt</a>
</div>
<div class="centered-text">
<h1> HOMEPAGE </h1>
<p> Coming soon! </p>
</div>
</body>
</html>