-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunavailable.html
39 lines (36 loc) · 1.16 KB
/
unavailable.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Unavailable</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" type="image/x-icon" href="./images/profile.jpg">
</head>
<body>
<div class="content">
<!-- HEADER -->
<div class="red header">
<div
id="menu"
class="red header"
style="padding-bottom: 20px; display: flex; justify-content: space-between;"
></div>
</div>
<!-- END HEADER -->
<div class="center redborder red box">
<img class="profile-image" src="./images/profile.jpg">
<h3>Page not found.</h3>
<a href="index.html">
<button class="redbc button">HOME</button>
</a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="./utils.js"></script>
<script lang="jquery">
(() => {
$("h1").text("Sorry");
initializeMenu(false);
})();
</script>
</body>
</html>