-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
71 lines (71 loc) · 2.94 KB
/
Copy path404.html
File metadata and controls
71 lines (71 loc) · 2.94 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - الصفحة غير موجودة | Zaid.python</title>
<meta name="description" content="الصفحة التي تبحث عنها غير موجودة. عد إلى الصفحة الرئيسية لتعلم بايثون مع زيد.">
<meta name="author" content="Zaid Abu Alshaar">
<link rel="icon" href="/assets/icons/favicon.svg" type="image/svg+xml">
<link rel="icon" href="/assets/icons/favicon-32x32.png" type="image/png" sizes="32x32">
<link rel="icon" href="/assets/icons/favicon-48x48.png" type="image/png" sizes="48x48">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/assets/icons/apple-touch-icon.png" sizes="180x180">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#7700ff">
<link rel="canonical" href="https://python.zaiddev.com/">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0c1445, #1a237e, #283593);
color: #e3f2fd;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}
.container { max-width: 500px; }
h1 {
font-size: 6rem;
font-weight: bold;
background: linear-gradient(135deg, #7700ff, #00c6ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 1rem;
}
h2 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
p { font-size: 1.1rem; color: #c5c6c7; margin-bottom: 2rem; line-height: 1.6; }
a {
display: inline-block;
padding: 12px 32px;
background: linear-gradient(135deg, #7700ff, #00c6ff);
color: #fff;
text-decoration: none;
border-radius: 12px;
font-weight: bold;
font-size: 1.1rem;
transition: transform 0.3s, box-shadow 0.3s;
}
a:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(119, 0, 255, 0.4);
}
a:focus {
outline: 2px solid #00c6ff;
outline-offset: 4px;
}
</style>
</head>
<body>
<main class="container">
<h1>404</h1>
<h2>الصفحة غير موجودة</h2>
<p>عذراً، الصفحة التي تبحث عنها غير موجودة أو تم نقلها. يمكنك العودة إلى الصفحة الرئيسية لمواصلة تعلم بايثون.</p>
<a href="/">العودة إلى الرئيسية</a>
</main>
</body>
</html>