-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
119 lines (106 loc) · 4.24 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
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
117
118
119
<!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">
<link rel="stylesheet" href="error.css">
<title>EcoE Bar | Ecommerce</title>
<link rel="stylesheet" href=link rel=" preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="header">
<div class="container">
<div class="navbar">
<div class="logo">
<img src="logo.jpeg" alt="logo" width="125px">
</div>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Chocolate</a></li>
<li><a href="">Pasta</a></li>
<li><a href="">Discounts</a></li>
<li><a href="">Special Dishes</a></li>
<li><a href="">Stores</a></li>
</ul>
</nav>
<img id="bold" class="headicon" src="whitecart.png" alt="cart">
<img class="headicon" src="search.png" alt="search">
<img class="menu" src="menu.png" alt="menu" onclick="menutoggle()">
</div>
</div>
</div>
<!-- Nacigation Bar with wall paper is above -->
<h1>Something went Wrong</h1>
<!-- Footer -->
<div class="footer">
<div class="column">
<span class="row">
<span class="footer-col1">
<h3 id="useful">Useful links</h3>
<ul>
<li class="item">Support</li>
<br>
<li class="item">FAQs</li>
<br>
<li class="item">Term and Conditions</li>
<br>
<li class="item" id="last">Join Affiliate</li>
</ul>
</span>
<span class="footer-col2">
<h3 id="ecoe">EcoE Bars</h3>
<p id="ecoetext">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Mollitia tenetur dignissimos labore consequuntur omnis dicta quaerat dolorum eius, dolore a. Architecto dolor non voluptatum explicabo.</p>
</span>
<span class="footer-col3">
<h3 id="follow">Follow Us on</h3>
<span class="socials">
<div class="socialbutton">
<div class="icon">
<i class="fa fa-facebook"><span class="icontext">Facebook</span></i>
</div>
</div>
<div class="socialbutton">
<div class="icon">
<i class="fa fa-twitter"><span class="icontext">Twitter</span></i>
</div>
</div>
<div class="socialbutton">
<div class="icon">
<i class="fa fa-instagram"><span class="icontext">Instagram</span></i>
</div>
</div>
<div class="socialbutton">
<div class="icon">
<i class="fa fa-youtube"><span class="icontext">Youtube</span></i>
</div>
</div>
</span>
</span>
</span>
</div>
</div>
<!-- Footer - Copyrights -->
<div id="copyright">Copyright © 2021 - EcoE Bars - All Rights Reserved</div>
<!-- JS for togglr menu -->
<script>
var MenuItems = document.getElementById("MenuItems");
MenuItems.style.maxHeight = "0px";
function menutoggle(){
if(MenuItems.style.maxHeight == "0px")
{
MenuItems.style.maxHeight = "200px";
}
else
{
MenuItems.style.maxHeight = "0px";
}
}
</script>
</body>
</html>