-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
109 lines (96 loc) · 4.77 KB
/
Copy path404.html
File metadata and controls
109 lines (96 loc) · 4.77 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<!-- SEO Meta Tags -->
<!-- Mohomad Rinas -->
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="404 - The page you are looking for could not be found on rinas.tech.">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | A.M. Rinas</title>
<link rel="icon" type="image/png" sizes="48x48" href="https://rinas.tech/favicon.png">
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-5Q7P9TH9');</script>
<!-- End Google Tag Manager -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XF8F16BVX3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-XF8F16BVX3');
</script>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="A.M. Rinas">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "A.M. Rinas",
"description": "Software Engineer and Full-Stack Developer focused on AI, DevOps, and modern web applications.",
"image": "https://rinas.tech/img/100blog.jpg",
"jobTitle": "Software Engineer",
"worksFor": {
"@type": "Organization",
"name": "Wincore Solutions"
},
"url": "https://rinas.tech/",
"sameAs": [
"https://qamastery.blogspot.com",
"https://www.youtube.com/@rinas0",
"https://www.researchgate.net/profile/Mohomad-Rinas",
"https://www.linkedin.com/in/amrinas",
"https://github.com/rinas21"
]
}
</script>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/cyber-theme.css">
<link rel="stylesheet" href="./css/theme-switcher.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4323468251086961"
crossorigin="anonymous"></script>
</head>
<body>
<!-- Mohomad Rinas -->
<header class="header">
<a href="index.html" class="logo">
<span class="code-bracket"><</span> Rinas <span class="code-bracket">/></span>
</a>
<nav class="navbar">
<a href="index.html#Home" style="--i:1">Home</a>
<a href="index.html#About" style="--i:2">About</a>
<a href="index.html#Experience" style="--i:3">Experience</a>
<a href="./pages/projects.html" style="--i:4">Projects</a>
<a href="./pages/blog.html" style="--i:5">Blog</a>
<a href="./pages/codelab.html" style="--i:6">CodeLab</a>
<a href="index.html#Contact" style="--i:7">Contact</a>
</nav>
</header>
<div style="display: flex; flex-direction: column; align-items: center; justify-content: center; height: 80vh; text-align: center; color: var(--ink);">
<h1 style="font-size: 5rem; margin-bottom: 20px;">404</h1>
<h2>Oops! Page Not Found</h2>
<p style="margin-bottom: 30px;">The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
<a href="index.html" style="padding: 10px 20px; background: var(--ink); color: var(--cream); text-decoration: none; border-radius: 5px;">Go to Homepage</a>
</div>
<!-- ===== FOOTER ===== -->
<footer class="footer" style="text-align: center; padding: 20px 0; margin-top: 40px; border-top: 1px solid var(--rule); font-size: 14px;">
<nav style="display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;">
<a href="https://rinas.tech/" style="color: var(--ink); text-decoration: none;">Home</a> |
<a href="https://rinas.tech/pages/blog.html" style="color: var(--ink); text-decoration: none;">Blog</a> |
<a href="https://rinas.tech/pages/privacy.html" style="color: var(--ink); text-decoration: none;">Privacy</a> |
<a href="https://rinas.tech/pages/terms.html" style="color: var(--ink); text-decoration: none;">Terms</a>
</nav>
<p style="margin-top: 10px; color: var(--ink-muted);">© 2026 A.M. Rinas. All rights reserved.</p>
</footer>
<!-- Theme Switcher UI -->
<div class="theme-switcher-container" id="themeSwitcher"></div>
<script src="./js/theme.js" defer></script>
</body>
</html>