-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
77 lines (75 loc) · 2.61 KB
/
Copy path404.html
File metadata and controls
77 lines (75 loc) · 2.61 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="robots" content="noindex, follow">
<title>404 - Page Not Found | Propeller Co-Pack</title>
<link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css?505">
<link rel="stylesheet" type="text/css" href="./style.css?6783">
<link rel="stylesheet" type="text/css" href="./css/all.min.css">
<style>
.not-found-wrap {
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem 1rem;
}
.not-found-card {
max-width: 720px;
margin: 0 auto;
}
.not-found-code {
font-size: clamp(3rem, 8vw, 5rem);
line-height: 1;
font-weight: 900;
margin-bottom: 1rem;
color: #ffffff;
}
.not-found-title {
font-size: clamp(1.5rem, 4vw, 2.3rem);
font-weight: 900;
margin-bottom: 0.75rem;
color: #ffffff;
}
.not-found-text {
font-size: 1.05rem;
margin-bottom: 1.5rem;
color: rgba(255,255,255,0.85);
}
.not-found-btn {
font-weight: 700;
text-decoration: none;
}
</style>
</head>
<body>
<div class="page-container">
<div class="bloc l-bloc" id="bloc-0">
<div class="container bloc-md-lg">
<div class="row">
<div class="col text-center text-lg-start">
<a href="./"><picture><source type="image/webp" srcset="img/Propeller-Nutri-3.webp"><img src="img/Propeller-Nutri-3.png" class="img-fluid" alt="Propeller Co-Pack logo" width="558" height="117"></picture></a>
</div>
</div>
</div>
</div>
<div class="bloc bgc-6037 d-bloc" id="bloc-404">
<div class="container not-found-wrap">
<div class="not-found-card">
<div class="not-found-code">404</div>
<h1 class="not-found-title">Page Not Found</h1>
<p class="not-found-text">
The page you requested does not exist or may have moved.
Use the button below to return to the homepage.
</p>
<a class="btn btn-lg btn-light not-found-btn" href="./">Back to Homepage</a>
</div>
</div>
</div>
</div>
<script src="./js/bootstrap.bundle.min.js?3128"></script>
</body>
</html>