-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (131 loc) · 4.67 KB
/
index.html
File metadata and controls
139 lines (131 loc) · 4.67 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="author" content="Matija Davidovic" />
<meta name="keywords" content="specijalitet, obrok, kuvanje, recept, recepti, cooking, kitchen, food" />
<meta name="description" content="Upoznajte se sa našim receptima iz najbolje kuhinje" />
<link href="css/style.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" />
<link rel="stylesheet" href="css/media.css">
<link rel="icon" href="img/favicon.png" />
<link href="dist/jquery.magnify.css" rel="stylesheet" />
<!-- JQUERY PLUGIN ZA SLIKE-->
<script src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ"
crossorigin="anonymous"></script>
<script src="dist/jquery.magnify.js"></script>
<title>Početna</title>
</head>
<body>
<header id="header"></header>
<main>
<img src="img/gore.png" id="vrh" alt="Na Vrh">
<div id="thumb">
<div id="h1ih2">
<h2>Želite da probate najbolje specijalitete?</h2>
<h1>Na pravom ste mestu!</h1>
<p>Za vas imamo recepte raznih domaćih jela.</p>
</div>
<a href="#recepti">Saznaj više</a>
</div>
<div id="recepti">
<h3>Recepti</h3>
</div>
<div id="kontakt">
<h3>Kontakt</h3>
<form id="forma" action="1.php" method="POST">
<table>
<tr>
<td class="pk"><label for="ime">Ime:</label></td>
<td>
<input type="text" placeholder="Pera" id="ime" name="ime" />
</td>
<td class="tk">
<p id="greskaime" class="greska"></p>
</td>
</tr>
<tr>
<td class="pk"><label for="prezime">Prezime: </label></td>
<td>
<input type="text" placeholder="Perić" id="prezime" name="prezime" />
</td>
<td class="tk">
<p id="greskaprezime" class="greska"></p>
</td>
</tr>
<tr>
<td class="pk"><label for="grad">Grad: </label></td>
<td>
<select id="grad"> </select>
</td>
<td class="tk">
<p id="greskagrad" class="greska"></p>
</td>
</tr>
<tr>
<td class="pk"><label for="email">Email: </label></td>
<td>
<input type="email" placeholder="pera123@gmail.com" id="email" name="email" />
</td>
<td class="tk">
<p id="greskaemail" class="greska"></p>
</td>
</tr>
<tr>
<td class="pk"><label for="broj">Broj telefona: </label></td>
<td>
<input type="text" placeholder="060/1122-334" id="broj" name="broj" />
</td>
<td class="tk">
<p id="greskabroj" class="greska"></p>
</td>
</tr>
<tr>
<td class="pk"><label for="poruka">Poruka: </label></td>
<td>
<textarea id="poruka" placeholder="Vaša poruka"></textarea>
</td>
<td class="tk">
<p id="greskaporuka" class="greska"></p>
</td>
</tr>
<tr>
<td></td>
<td><input type="button" id="dugme" value="Pošalji" /></td>
<td class="tk">
<p id="uspesno"></p>
</td>
</tr>
</table>
</form>
</div>
<div id="oautoru">
<h3 id="hatri">O Autoru</h3>
<div id="text">
<p id="paragraf">
Zovem se Matija Davidović, živim u Beogradu i trenutno sam student
druge godine Visoke ICT škole.
<p id="vise"> Završio sam srednju tehničku PTT
školu sa vrlo dobrim uspehom. Još kao mali su me zanimali računari,
telefoni i ostale nove tehnologije pa kao želju da budem programer
upisao sam ovu školu. Ovaj sajt predstavlja predispitnu obavezu iz
predmeta Web Programiranje 1.</p>
<button id="prikazivise">Prikaži više</button>
</p>
</div>
<img id="autor" src="img/autor.jpeg" alt="Matija Davidović" />
<div class="cleaner"></div>
</div>
</main>
<footer>
<p id="cr">Copyright© Matija Davidović 115/18</p>
<a href="dokumentacija.pdf" id="dokumentacija" target="_blank">Dokumentacija</a>
<div id="vreme"></div>
<div id="mreze"></div>
</footer>
<script src="js/main.js"></script>
</body>
</html>