-
Notifications
You must be signed in to change notification settings - Fork 1
/
wrong.html
130 lines (123 loc) · 5.08 KB
/
wrong.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
120
121
122
123
124
125
126
127
128
129
130
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/21ee7ce0f9.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<title>lockr - Units & prices</title>
</head>
<body>
<!-- menu -->
<!-- <header>
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#"><img src="img/logo-lokr.png" alt="LOCKR"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa-solid fa-bars"></i>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav" id="menu">
<li class="nav-item" id="home">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item" id="unit">
<a class="nav-link" href="our-units.html">Units & prices</a>
</li>
<li class="nav-item" id="contact">
<a class="nav-link" href="contact.html">Contact us</a>
</li>
<li class="nav-item auth">
<a class="nav-link" href="create-account.html"><i class="fa-solid fa-fingerprint"></i> Create an account</a>
</li>
<li class="nav-item auth">
<a class="nav-link" href="login.html"><i class="fa-solid fa-user"></i> Log in</a>
</li>
</ul>
</div>
</nav>
</div>
</header> -->
<!-- end menu -->
<!-- section -->
<section>
<div class="container space-md" id="wrong">
<div class="row">
<div class="col-md-7 text-center">
<img src="img/wrong.png" alt="error 404 image">
</div>
<div class="col-md-5">
<br>
<h2 class="wrong-title text-left">Something <br> went <span class="color-purple">wrong</span></h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Vestibulum dignissim vehicula est eget sollicitudin.
Phasellus sit amet sagittis erat, et placerat erat.
</p>
<br>
<a class="btn bg-orange" href="index.html" role="button">Back to Homepage</a>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- footer -->
<!-- <footer>
<div class="container-fluid">
<img src="img/logo-lokr-negative.png" alt="">
<div class="row">
<div class="col-md-5">
<P>
Lockr Self Storage is your affordable and convenient self-storage solution in
Riversands, Midrand. Experience the future of storage with our budget-friendly
options, ease of use, and smart design. Simplify life. Leave it to Lockr!
</P>
</div>
<div class="col-md-2">
<h6>Contact us</h6>
<ul>
<li>[email protected]</li>
<li>0XX XXX XXXX</li>
</ul>
</div>
<div class="col-md-2">
<h6>Legal</h6>
<ul>
<li><a href="">Privacy policy</a></li>
<li><a href="">Terms & conditions</a></li>
</ul>
</div>
<div class="col-md-3">
<h6>Follow us</h6>
<ul>
<li>
<a href="#">Facebook</a>
</li>
</ul>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-6">
<p>
2023 © Lockr Self Storage. All rights reserved.
</p>
</div>
<div class="col-md-6">
<p class="float-right">Developed by <a href="#">bryanthxo</a></p>
</div>
</div>
</footer> -->
<!-- end footer -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/main.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
</body>
</html>