-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
52 lines (36 loc) · 1.76 KB
/
Copy path404.html
File metadata and controls
52 lines (36 loc) · 1.76 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Type some info">
<meta name="description" content="Final CSS (finalcss) is a utility-first and component library for building modern websites without leaving your HTML"/>
<meta name="author" content="Vosidiy M">
<title>Final CSS - Simple Open source CSS library (utilities and components)</title>
<style type="text/css">
.bg-colorful{
background-image: linear-gradient(180deg, #ffffff03, var(--bg-color-base) 85%), radial-gradient(ellipse at top left, #0d6efd80, transparent 50%), radial-gradient(ellipse at top right, #ffe48480, transparent 50%), radial-gradient(ellipse at center right, #712cf980, transparent 50%), radial-gradient(ellipse at center left, #d6338480, transparent 50%);
}
</style>
<!-- Site script (only for documentation site) -->
<script src="/site/script.js"></script>
<!-- FinalCSS -->
<link href="/css/final.css" rel="stylesheet" type="text/css" />
<!-- Template parts (only for documentation site) -->
<script src="/site/partials.js"></script>
</head>
<body class="bg-base">
<!-- ======= HEADER ======= -->
<header-component></header-component>
<!-- ======= HEADER end// =======-->
<main class="py-20 bg-colorful">
<div class="container" style="max-width: 980px;">
<h1 class="text-4xl lg:text-5xl lg:text-6xl text-center my-5"> Page Not Found </h1>
<p class="mb-5 text-xl text-secondary text-center text-balance"> 404 error, Please check other pages </p>
<div class="text-center mb-3">
<a class="btn btn-primary" href="/docs/">Documentation</a>
</div>
</div> <!-- container end.// -->
</main> <!-- section-header end.// -->
</body>
</html>