-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
27 lines (23 loc) · 1.35 KB
/
404.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
<html> <!-- Defines the document as an HTML5 document. Make sure to close this tag at the end. -->
<head>
<title>NM - 404</title> <!-- Sets the title of the page, shown on the browser tab. -->
<link rel="stylesheet" href="index.css"> <!-- Links an external CSS file ("index.css") to style the page. -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<!-- Preconnects to Google's font server to speed up the loading of fonts. -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Preconnects to Google's static font server, allowing cross-origin font requests. -->
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wdth,wght,GRAD,XOPQ,[email protected],151,1000,150,175,135&display=swap"
rel="stylesheet"> <!-- Loads the Roboto Flex font with various customizable options for weight, size, etc. -->
</head>
<body> <!-- All visible content on the page goes inside the body tag. -->
<h1>404</h1> <!-- Main heading of the page. -->
<p>well, my little <s>slave</s> helper didnt find anything.</p> <!-- Description text for the site. -->
<p>actually, i think i hear something.</p>
<h2>JUAN! DID YOU FIND ANYTHING?</h2>
<h3>no.</h3>
<p>nothing here. at least we have this button</p>
<a href="index.html">
</ul>
</body>
</html> <!-- Closes the HTML document. -->