-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserbian-contact.html
82 lines (70 loc) · 3.35 KB
/
serbian-contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Licni Magisk Repozitorjium</title>
<link rel="icon" href="images/cogwheel_nice_android.svg">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<p class="hidden" id="lang">serbian</p>
<p class="hidden" id="page">4</p>
<div id="bgImage">
<img src="images/magisk-svgrepo-com.svg" alt="">
</div>
<!-- Navigation Bar -->
<nav id="nav" style="max-height: 80px;">
<div class="sideMargins"></div>
</nav>
<script src="js/nav.js"></script>
<!-- Navigation Bar -->
<div id="content">
<section id="contact" class="sectionPadding">
<iframe id="contactMap" class="card" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5822.710931971882!2d20.52148057531651!3d43.139064348555436!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4756280deac6db43%3A0xeae7cc439dc61e63!2sState%20University%20of%20Novi%20Pazar!5e0!3m2!1sen!2srs!4v1655824300510!5m2!1sen!2srs" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<div class="card contactCard">
<h1>Contact</h1>
<div id="contactInfoContainer">
<div class="contactInfo">
<img src="images/icons/location.png" alt="">
<div>
<h3>Lokacija:</h3>
<p>Gorana Pecka 69, Novi Pazar, Srbija</p>
</div>
</div>
<div class="contactInfo">
<img src="images/icons/email.png" alt="">
<div>
<h3>Email:</h3>
<p>[email protected]</p>
</div>
</div>
<div class="contactInfo">
<img src="images/icons/smartphone.png" alt="">
<div>
<h3>Poziv:</h3>
<p>+381 69 696969</p>
</div>
</div>
</div>
<form action="" id="contactForm">
<input placeholder="Ime" type="text" name="Ime" id="formName" class="contactFormCommon halfWidth">
<input placeholder="Email" type="text" name="Email" id="formEmail" class="contactFormCommon halfWidth">
<input placeholder="Naslov" type="text" name="Naslov" id="formSubject" class="contactFormCommon fullWidth">
<textarea placeholder="Poruka" name="Poruka" id="formText" cols="30" rows="10" class="contactFormCommon fullWidth"></textarea>
<div>
<input type="submit" name="" id="" class="btnCommon btnColor" value="Posalji">
<h2 id="formErrorMsg"></h2>
</div>
</form>
</div>
</section>
</div>
<script src="js/form-check.js"></script>
<!-- Footer -->
<section id="footer"></section>
<script src="js/footer.js"></script>
<!-- Footer -->
</body>
</html>