-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
28 lines (26 loc) · 763 Bytes
/
Copy path404.html
File metadata and controls
28 lines (26 loc) · 763 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found – Edgardo De Leon</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<h1>Edgardo De Leon</h1>
<p class="subtitle">PhD Student · Computational Chemistry</p>
</div>
</header>
<main class="container">
<h2>404 – Page Not Found</h2>
<p>The page you're looking for doesn't exist. <a href="index.html">Go back home</a>.</p>
</main>
<footer>
<div class="container">
<p>© 2026 Edgardo De Leon</p>
</div>
</footer>
</body>
</html>