-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
48 lines (46 loc) · 2.87 KB
/
Copy path404.html
File metadata and controls
48 lines (46 loc) · 2.87 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
<!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.java</title>
<meta name="description" content="الصفحة التي تبحث عنها غير موجودة. عد إلى الصفحة الرئيسية لمنصة Zaid.java لتعلم جافا.">
<meta name="robots" content="noindex">
<!-- Favicon & Icons -->
<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="apple-touch-icon" href="/assets/icons/apple-touch-icon.png" sizes="180x180">
<link rel="shortcut icon" href="/favicon.ico">
<meta name="theme-color" content="#64ffda">
<!-- Fonts & Styles -->
<script src="https://cdn.tailwindcss.com"></script>
<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=Tajawal:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body class="bg-primary-dark" style="font-family: 'Tajawal', sans-serif; color: var(--text-primary);">
<main class="min-h-screen flex items-center justify-center px-4">
<div class="text-center max-w-lg">
<div class="text-8xl font-bold mb-6" style="color: var(--accent-color);">404</div>
<h1 class="text-3xl font-bold text-white mb-4">الصفحة غير موجودة</h1>
<p class="text-lg mb-8" style="color: var(--text-secondary);">
عذرًا، الصفحة التي تبحث عنها غير موجودة أو تم نقلها.
</p>
<div class="mb-8" style="direction: ltr; text-align: left; background: rgba(10,25,47,0.8); border-radius: 12px; padding: 20px; border: 1px solid rgba(100,255,218,0.1); font-family: 'Courier New', monospace; font-size: 15px; line-height: 1.6;">
<pre><span style="color: #ff79c6;">public class</span> <span style="color: var(--accent-color);">PageNotFound</span> {
<span style="color: #ff79c6;">public static void</span> main(String[] args) {
<span style="color: #6272a4;">// Error 404</span>
System.out.println(<span style="color: #f1fa8c;">"Page not found!"</span>);
System.out.println(<span style="color: #f1fa8c;">"Redirecting home..."</span>);
}
}</pre>
</div>
<a href="/" class="btn-primary inline-block px-8 py-3 text-lg" style="text-decoration: none;">
<i class="fas fa-home ml-2"></i> العودة للرئيسية
</a>
</div>
</main>
</body>
</html>