-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
60 lines (56 loc) · 2.41 KB
/
error.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mangata & Gallo | Luxury jewellery, Gifts and Accessories</title>
<meta name="description" content="Our jewellery is highly popular in Austin Texas and around the globe.">
<meta name="author" content="Mangata & Gallo Atelier">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Markazi+Text:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img id="logo" src="images/logo.png" alt="logo" height="30px">
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="error.html">Jewellery</a></li>
<li><a href="error.html">Contact</a></li>
<li><a href="error.html">About</a></li>
</ul>
</nav>
<main>
<section>
<article id="hero">
<h1>Work in Progress...</h1>
<p>Please return to 'home' page by clicking on navigation bar</p>
</article>
</section>
</main>
<footer>
<div class="column one"><img src="images/logo_footer.png" alt="logo"></div>
<div class="column two"><p>© 2024 Mangata & Gallo USA. All rights reserved.</p></div>
</footer>
<script>
document.getElementById('logo').addEventListener('click', function() {
window.location.href = 'index.html';
});
document.getElementById('btn1').addEventListener('click', function() {
window.location.href = 'error.html';
});
document.getElementById('btn2').addEventListener('click', function() {
window.location.href = 'error.html';
});
document.getElementById('btn3').addEventListener('click', function() {
window.location.href = 'error.html';
});
document.getElementById('btn4').addEventListener('click', function() {
window.location.href = 'error.html';
});
</script>
</body>
</html>