-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
102 lines (97 loc) · 3.52 KB
/
contact.php
File metadata and controls
102 lines (97 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<?php
require 'include/head.php';
?>
<title>Contact - Umami Sushi</title>
</head>
<body>
<?php
include 'include/navbar.php';
?>
<main>
<section id="contact">
<article class="contact-times-today panel padded">
<h2 class="gradient-text">Today</h2>
<article class="contact-times-now">
<p>We are currently:</p>
<article class="contact-times-now-tag">
<h2>Open</h2>
<p>Closes at 21:00</p>
</article>
<p><i class="fa-solid fa-user"></i> 19 / 48 Places Available</p>
</article>
</article>
</article>
<article class="contact-times-week panel">
<table>
<tr>
<th>Dag</th>
<th>Mo</th>
<th>Tu</th>
<th>We</th>
<th>Th</th>
<th>Fr</th>
<th>Sa</th>
<th>Su</th>
</tr>
<tr>
<th>Opens</th>
<th>11:00</th>
<th>11:00</th>
<th>11:00</th>
<th>11:00</th>
<th>11:00</th>
<th>13:00</th>
<th>00:00</th>
</tr>
<tr>
<th>Closes</th>
<th>21:00</th>
<th>21:00</th>
<th>21:00</th>
<th>21:00</th>
<th>21:00</th>
<th>20:00</th>
<th>00:00</th>
</tr>
</table>
</article>
<article class="contact-location-map panel">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2447.123456789012!2d4.4837418!3d52.1608605!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c5c6ee75920585%3A0xb2bf2814cb018432!2sGalgewater%2012%2C%202311%20VZ%20Leiden!5e0!3m2!1snl!2snl!4v1234567890123!5m2!1snl!2snl"
style="border:0;"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</article>
<article class="contact-location-info panel padded">
<h2 class="gradient-text">Location</h2>
<article class="contact-location-info-text">
<article class="panel-element">
<h3>Address:</h3>
<p>Galgewater 12</p>
</article>
<article class="panel-element">
<h3>Postal:</h3>
<p>2311VZ Leiden</p>
</article>
<article class="panel-element">
<h3>Number:</h3>
<p>088-2324456 </p>
</article>
<article class="panel-element">
<h3>Mail:</h3>
<p>[email protected]</p>
</article>
</article>
</article>
</section>
</main>
<?php
include 'include/footer.php';
?>
</body>
</html>