File tree Expand file tree Collapse file tree 1 file changed +73
-0
lines changed
Expand file tree Collapse file tree 1 file changed +73
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+
4+ < head >
5+ < meta charset ="UTF-8 ">
6+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8+ < title > 404 - Page Not Found</ title >
9+ <!-- Your CSS styles -->
10+ < style >
11+ /* Your styles from the original code */
12+ html ,
13+ body {
14+ --header-bg : # 0f0c19 ;
15+ --accent : # 4e3aA3 ;
16+ --body-fg : # 9b7dff ;
17+
18+ margin : 0 ;
19+ padding : 0 ;
20+ background-color : # 0f0c19 ;
21+ color : var (--body-fg );
22+
23+ font-family : 'Roboto Regular' , sans-serif;
24+ padding : 20px ;
25+ }
26+
27+ body * {
28+ box-sizing : border-box;
29+ line-height : 1.5em ;
30+ }
31+
32+ /* ... (rest of your styles) ... */
33+
34+ /* Additional styles for 404 page */
35+ .error-container {
36+ display : flex;
37+ justify-content : center;
38+ align-items : center;
39+ flex-direction : column;
40+ text-align : center;
41+ height : 100vh ;
42+ }
43+
44+ .error-container h1 {
45+ font-size : 4rem ;
46+ margin-bottom : 10px ;
47+ }
48+
49+ .error-container p {
50+ font-size : 1.2rem ;
51+ color : # 666 ;
52+ }
53+
54+ .error-container a {
55+ color : # 009688 ;
56+ text-decoration : none;
57+ }
58+
59+ .error-container a : hover {
60+ text-decoration : underline;
61+ }
62+ </ style >
63+ </ head >
64+
65+ < body >
66+ < div class ="error-container ">
67+ < h1 > 404 - Page Not Found</ h1 >
68+ < p > The page you are looking for might have been removed or is temporarily unavailable.</ p >
69+ < p > Go back to < a href ="/ "> homepage</ a > .</ p >
70+ </ div >
71+ </ body >
72+
73+ </ html >
You can’t perform that action at this time.
0 commit comments