-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
91 lines (91 loc) · 2.97 KB
/
404.html
File metadata and controls
91 lines (91 loc) · 2.97 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="ar" dir="rtl" data-theme="dark">
<head>
<meta charset="UTF-8">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TGDPERQEF4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TGDPERQEF4');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes">
<meta name="theme-color" content="#1a2933" id="themeColorMeta">
<meta name="robots" content="noindex">
<meta name="apple-itunes-app" content="app-id=6751274124">
<link rel="icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<title>404 - الصفحة غير موجودة | PARKINZI</title>
<link rel="manifest" href="manifest.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Monoton&display=swap" rel="stylesheet">
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="footer.css">
<style>
*, *::before, *::after {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
text-size-adjust: 100%;
}
body {
margin: 0;
font-family: 'IBM Plex Sans Arabic', sans-serif;
background: linear-gradient(180deg, #1F2E38 0%, #14232D 100%);
color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}
.error-code {
font-family: 'Monoton', cursive;
font-size: clamp(4rem, 15vw, 10rem);
color: rgb(0, 160, 210);
line-height: 1;
margin-bottom: 0.5rem;
}
.error-message {
font-size: clamp(1.2rem, 3vw, 1.6rem);
font-weight: 600;
margin-bottom: 0.5rem;
opacity: 0.9;
}
.error-sub {
font-size: clamp(0.9rem, 2vw, 1.1rem);
opacity: 0.6;
margin-bottom: 2rem;
}
.home-btn {
display: inline-block;
padding: 0.8rem 2rem;
background: rgb(0, 160, 210);
color: #fff;
text-decoration: none;
border-radius: 12px;
font-weight: 600;
font-size: 1rem;
transition: opacity 0.2s;
}
.home-btn:hover {
opacity: 0.85;
}
</style>
</head>
<body>
<div class="error-code">404</div>
<p class="error-message">الصفحة غير موجودة</p>
<p class="error-sub">الرابط اللي دخلته ما يشتغل او الصفحة انحذفت</p>
<a href="/" class="home-btn">الرئيسية</a>
</body>
</html>