20 lines
		
	
	
		
			585 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			585 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!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/style.css">
 | |
|   <link rel="stylesheet" href="/styles/404.css">
 | |
|   <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
 | |
|   <script src="/scripts/main.js" defer></script>
 | |
|   <title>404</title>
 | |
| </head>
 | |
| <body>
 | |
|     <main>
 | |
|         <img src="/img/logo-light.svg" alt="Logo">
 | |
|         <p>Requested resource was not found</p>
 | |
|         <p><a href="/">Go back to Homepage</a></p>
 | |
|     </main>
 | |
| </body>
 | |
| </html>
 |