generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
116 lines (109 loc) · 4.93 KB
/
404.html
File metadata and controls
116 lines (109 loc) · 4.93 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
<!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">
<meta name="description" content="Center for Special Treatment">
<meta name="keywords"
content="simeio therapy, special treatment, speech therapy, occupational therapy, parental counseling, dyslexia, autism, london, uk">
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="assets/images/apple-touch-icon.png">
<link rel="stylesheet" href="assets/css/style.css">
<title>Simeio Therapy | Error Page</title>
</head>
<body>
<!--Logo and navbar with links-->
<header>
<div>
<a href="index.html">
<h1>
<img src="assets/images/logo-image.png" alt="Home button" class="logo">
</h1>
</a>
</div>
<input id="menu-toggle" type="checkbox">
<label class='menu-button-container' for="menu-toggle">
<a class='menu-button'><span id="menu-button-rm">-</span></a>
</label>
<ul class="menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about-us.html">About Us</a>
</li>
<li class="dropdown">
<a href="#" class="dropbtn">Services</a>
<div class="dropdown-content">
<a href="speech-therapy.html">Speech Therapy</a>
<a href="occupational-therapy.html">Occupational Therapy</a>
<a href="parental-counselling.html">Parental Counselling</a>
<a href="special-education.html">Special Education</a>
</div>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</header>
<hr>
<!--Error message-->
<div class="error-page-container">
<div class="error-page">
<h2>404 error - page not found</h2>
<p>How did you get here!!</p>
<p>Click our logo to return to home page</p>
<div class="sub-form-logo">
<a href="index.html">
<img src="assets/images/logo-redirect.png" alt="Logo home button">
</a>
</div>
</div>
</div>
<footer class=" error-page-footer">
<div class="footer-container">
<div class="social">
<ul>
<li>
<a href="https://www.facebook.com/profile.php?id=100087858451493" target="_blank"
aria-label="Visit our Facebook page"><i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="https://twitter.com" target="_blank" aria-label="Visit our Twitter page"><i
class="fa-brands fa-twitter"></i></a>
</li>
<li>
<a href="https://instagram.com" target="_blank" aria-label="Visit our Instagram page"><i
class="fa-brands fa-instagram"></i></a>
</li>
<li>
<a href="https://youtube.com" target="_blank" aria-label="Visit our Youtube page"><i
class="fa-brands fa-youtube"></i></a>
</li>
</ul>
</div>
<div class="map-footer">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d757.3097164575439!2d22.9523887!3d40.6025532!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14a8392823fc16bb%3A0x88798ef740c4f290!2sSpeech%20Therapy%20center!5e0!3m2!1sen!2suk!4v1679087569116!5m2!1sen!2suk"
width="400" height="150" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade" title="pinpoint-map">
</iframe>
</div>
<div id="address">
<h2><a href="contact.html">Contact Us</a></h2>
<h3>Address</h3>
<p><i class="fa-solid fa-location-dot"></i> Vasilis Olgas 128, Thessaloniki, Greece</p>
<p><i class="fa-solid fa-phone"></i> +30 693 6927305</p>
<p><i class="fa-solid fa-phone"></i> +30 231 0869540</p>
<p><i class="fa-solid fa-at"></i> kentrologo@gmail.com</p>
</div>
</div>
<div class="copyright">
<p>COPYRIGHT <i class="fa-regular fa-copyright"></i> 2023 <a href="https://www.simeiotherapy.gr"
target="_blank">Κέντρο Ειδικών Θεραπειών “σημείο”</a></p>
</div>
</footer>
<!--Font awesome script-->
<script src="https://kit.fontawesome.com/cdf0a3356f.js" crossorigin="anonymous"></script>
</body>
</html>