-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfc6fa941b9c.html
More file actions
55 lines (52 loc) · 1.6 KB
/
Copy pathdfc6fa941b9c.html
File metadata and controls
55 lines (52 loc) · 1.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<title>Freshie Challenge Cybersecurity</title>
<link
href="https://fonts.googleapis.com/css2?family=PT+Mono&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<a style="margin-bottom: 40px" href="handout/gray.png" download>
<button class="button">
<div style="display: flex; flex-direction: row">
<svg
class="download-icon"
viewBox="0 0 24 24"
width="24"
height="24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M12 3V17M12 17L6 11M12 17L18 11M5 21H19"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<span style="margin-top: 3px; margin-left: 8px">gray.png</span>
</div>
</button>
</a>
<div class="terminal"></div>
<script src="script/script.js"></script>
<script>
const message = ` +++4/6 What do you see?+++
I dwell where black and blacker lie,
No gleam escapes the watcher’s eye.
But twist the scale of dark and light,
And in contrast to your belief I shall step into - your sight.
Download gray.png`;
window.onload = () => {
typeWriter(message, 75, 0, false);
};
</script>
</body>
</html>