-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 941 Bytes
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>404 Error</title>
</head>
<body>
<main>
<picture>
<source
media="(min-width: 640px)"
srcset="./src/assets/graphics/security_breach_desktop.svg"
>
<img
src="./src/assets/graphics/security_breach_mobile.svg"
alt="Thief trying to gain access through a secured door"
class="graphic"
>
</picture>
<div class="hero-container">
<h1 class="error-msg">404 internal error</h1>
<p class="hacked-msg">
You've been
<span class="hacked-word">hacked</span>...
</p>
<p>
Nah, just kidding.<br>
Maybe it's some missing file.
</p>
<a href="#" class="link-button">Take me outta here</a>
</div>
</main>
</body>
</html>