-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
93 lines (85 loc) · 3.64 KB
/
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
83
84
85
86
87
88
89
90
91
92
93
<!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>Respresso | Contact</title>
<link rel="stylesheet" href="./contact.css">
<link rel="stylesheet" href="./navbar.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="nav" id="navbar">
<div class="nav-header">
<div class="nav-title" id="respresso-logo">
<a href="./index.html" target="_self">
<img src="resources/respressologo.PNG" alt="respresso-logo">
</a>
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<a href="./echipa.html" target="_self">Echipă</a>
<a href="./produse.html" target="_self">Produse</a>
<a href="./contact.html" target="_self" style="text-decoration: underline; text-underline-offset:19px;">Contact</a>
<a href="./" target="_self" class="fa fa-home"></a>
</div>
<div class="popup">
<ul>
<li><a href="./echipa.html" target="_self">Echipă</a></li>
<span></span>
<li><a href="./produse.html" target="_self">Produse</a></li>
<span></span>
<li><a href="./contact.html" target="_self" style="color: #152f57;">Contact</a></li>
</ul>
</div>
</div>
<h1 style="margin-top: 80px;">Contactează-ne la:</h1>
<div class="contact-details transition-in">
<a href="tel:+40748123123">0748 123 123</a><br>
<a href="mailto:[email protected]">[email protected]</a><br>
<a href="https://www.facebook.com/" class="fa fa-facebook"></a>
<a href="https://www.instagram.com" class="fa fa-instagram"></a>
</div>
<h1>Vino în localul nostru:</h1>
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2718.477897201389!2d21.933827!3d47.050475!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x98610bf934768e11!2zNDfCsDAzJzAxLjciTiAyMcKwNTYnMDEuOCJF!5e0!3m2!1sro!2sro!4v1671613917517!5m2!1sro!2sro" width="800" height="400" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<h1>Sau comandă online:</h1>
<div class="grid-content">
<div class="card transition-in">
<img src="./resources/glovo.png" alt="">
<div class="container">
<b>Respresso livreaza prin Glovo!</b>
<p>Comandă-ți produsele Respresso direct la ușă prin aplicația sau site-ul Glovo</p>
<div id="button">
<h3>Comandă</h3>
</div>
</div>
</div>
<div class="card transition-in">
<img src="./resources/tazz.jpg" alt="">
<div class="container">
<b>Respresso livreaza prin Tazz!</b>
<p>Comandă-ți produsele Respresso direct la ușă prin aplicația sau site-ul Tazz</p>
<div id="button">
<h3>Comandă</h3>
</div>
</div>
</div>
</div>
<footer>
Respresso © <br>
Devleoped by Efraim
</footer>
</body>
<script src="./navbar.js"></script>
<script src="./transitions.js"></script>
</html>