35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
    <head>
 | 
						|
        <meta charset="utf-8">
 | 
						|
        <title>Akshay Kolli</title>
 | 
						|
        <link rel="icon" href="{{ url_for('static', filename='assets/favicon.ico') }}" type="image/x-icon" >
 | 
						|
        <link rel="stylesheet" href="{{ url_for('static', filename='assets/style.css') }}" type="text/css" >
 | 
						|
        <style>
 | 
						|
        @font-face {
 | 
						|
            font-family: "typewriter";
 | 
						|
            src: url("{{ url_for('static', filename='assets/royal_quiet_deluxe.ttf') }}") format("truetype");
 | 
						|
            font-weight: normal;
 | 
						|
            font-style: normal;
 | 
						|
            font-display: swap;
 | 
						|
        }
 | 
						|
 | 
						|
        h1 {
 | 
						|
            font-family: "typewriter";
 | 
						|
        }
 | 
						|
        p {
 | 
						|
            font-family: "typewriter";
 | 
						|
        }
 | 
						|
    </style>
 | 
						|
    </head>
 | 
						|
 | 
						|
 | 
						|
    <body>
 | 
						|
        <header><a class="header_link" href="/posts">Posts</a> <a class="header_link" href="/">Home</a>
 | 
						|
                <a class="header_link" href="https://code.akshaykolli.net">Code</a>
 | 
						|
        </header>
 | 
						|
        <h1>404 ERROR</h1>
 | 
						|
        <button><a href="/">Go home</a></button>
 | 
						|
    </body>
 | 
						|
</html> |