-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (114 loc) · 3.54 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<title>Cibus et terra</title>
<link rel="stylesheet" href="./style/style.css" />
</head>
<body>
<header>
<div>
<a class="title" href="index.html"><h1>Cibus et terra</h1></a>
</div>
<div>
<ul>
<li><a href="./katalog.html">Katalog</a></li>
<li><a href="./o-nama.html">O nama</a</li>
<li><a href="./kontakt.html">Kontakt</a></li>
</ul>
</div>
</header>
<section>
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="./assets/pic1.jpg" style="width: 100%" />
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="./assets/pic2.jpg" style="width: 100%" />
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="./assets/pic3.jpg" style="width: 100%" />
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
</section>
<section class="features">
<div class="feature-row">
<div class="feature-item">
<h3>Italesse</h3>
<p>Opisni text Italesse</p>
<button id="italesse-modal-toggle" type="button">Prikaži više</button>
</div>
<div class="feature-item">
<h3>Thrill</h3>
<p>Opisni text Thrill</p>
<button id="thrill-modal-toggle" type="button">Prikaži više</button>
</div>
</div>
<div class="feature-row">
<div class="feature-item">
<h3>Pivo</h3>
<p>Opisni text Pivo</p>
<button id="pivo-modal-toggle" type="button">Prikaži više</button>
</div>
<div class="feature-item">
<h3>Hedonist</h3>
<p>Opisni text Hedonist</p>
<button id="hedonist-modal-toggle" type="button">Prikaži više</button>
</div>
</div>
</section>
<footer><p>Cibus et terra</p></footer>
<div id="italesse-modal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span id="italesse-modal-close" class="close">×</span>
<h2>Italesse</h2>
</div>
<div class="modal-body">
<p>Text o italesse</p>
</div>
</div>
</div>
<div id="thrill-modal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span id="thrill-modal-close" class="close">×</span>
<h2>Thrill</h2>
</div>
<div class="modal-body">
<p>Text o thrill</p>
</div>
</div>
</div>
<div id="pivo-modal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span id="pivo-modal-close" class="close">×</span>
<h2>Pivo</h2>
</div>
<div class="modal-body">
<p>Text o pivo</p>
</div>
</div>
</div>
<div id="hedonist-modal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span id="hedonist-modal-close" class="close">×</span>
<h2>Hedonist</h2>
</div>
<div class="modal-body">
<p>Text o hedonist</p>
</div>
</div>
</div>
</body>
</html>
<script src="./js/home.js"></script>