-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
113 lines (94 loc) · 3.99 KB
/
Copy path404.html
File metadata and controls
113 lines (94 loc) · 3.99 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
110
111
112
113
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Page not found — Adrian Mehran</title>
<!-- Favicon (browser, mobile, and PWA support) -->
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png" />
<link rel="shortcut icon" href="./favicon/favicon.ico" />
<link rel="manifest" href="./favicon/site.webmanifest" />
<!-- Clean, modern typefaces -->
<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=Inter:wght@400;500;600&family=Newsreader:opsz,wght@6..72,500;6..72,600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<a class="skip-link" href="#content">Skip to content</a>
<!-- Top Nav -->
<header class="topbar" role="banner">
<div class="wrap topbar__inner">
<div class="topbar__brandSlot">
<img src="img/logo.png" alt="Logo" class="logo" />
<a class="brand" href="/">
<span class="brand__name">Adrian Mehran</span>
<span class="brand__tag">Student · Research & Leadership</span>
</a>
</div>
<nav class="nav" aria-label="Primary">
<!-- Mobile toggle -->
<button
class="nav__toggle"
type="button"
aria-expanded="false"
aria-controls="navMenu"
>
<span class="nav__toggleLine"></span>
<span class="nav__toggleLine"></span>
<span class="nav__toggleLine"></span>
<span class="sr-only">Open menu</span>
</button>
<!-- Menu -->
<div id="navMenu" class="nav__menu">
<div class="nav__sections" aria-label="Page sections">
<a class="nav__link" href="/#education">Education</a>
<a class="nav__link" href="/#research">Research</a>
<a class="nav__link" href="/#leadership">Leadership</a>
<a class="nav__link" href="/#experience">Experience</a>
<a class="nav__link" href="/#honors">Honors</a>
<a class="nav__link" href="/#skills">Skills</a>
<a class="nav__link" href="/#contact">Contact</a>
</div>
<div class="nav__utilities" aria-label="Site utilities">
<a
class="nav__link nav__link--cta nav__link--cv"
href="assets/Adrian_Mehran_CV_Eng.pdf"
target="_blank"
rel="noopener noreferrer"
>
Download CV
</a>
</div>
</div>
</nav>
</div>
</header>
<!-- 404 Section -->
<main id="content">
<section class="section" style="min-height: calc(100vh - 120px); display: flex; align-items: center;">
<div class="wrap">
<!-- Card -->
<div class="card" style="text-align:center; max-width:520px; margin:0 auto;">
<h2 class="hero__title" style="margin-bottom:8px;">404</h2>
<h3 class="hero__title" style="font-size: clamp(28px, 3.5vw, 36px); margin-bottom:8px;">
Page Not Found
</h3>
<p class="muted" style="margin-bottom:24px;">
Sorry, but the page you’re looking for doesn’t exist — <br> click on the button below to go back to the home page.
</p>
<div class="hero__actions" style="justify-content:center;">
<a href="/" class="btn btn--primary">Go back home</a>
</div>
</div>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>