template.html_noinclude (1737B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <meta name="description" content="Welcome to my alright blog"> 8 <meta name="author" content="Reagan Fischer"> 9 <title>Reagan Fischer's Website</title> 10 <link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css"> 11 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/new.css@1.1.2/new.min.css"> 12 <link rel="icon" type="image/x-icon" href="/images/win95.png"> 13 <link rel="apple-touch-icon" href="/images/win95.png"> <style> 14 /* Add CSS for the image */ 15 .profile-image { 16 float: left; /* Float the image to the left of the text */ 17 margin-right: 20px; /* Add some margin to separate it from the text */ 18 border: 2px solid #ccc; /* Add a border around the image */ 19 padding: 5px; /* Add padding inside the border */ 20 } 21 </style> 22 </head> 23 24 <body> 25 <header> 26 <h1>Reagan Fischer's Blog/Portfolio</h1> 27 <nav> 28 <a href="/">Home</a> / 29 <a href="/projects.html">Projects</a> / 30 <a href="/blog.html">Blog</a> / 31 <a href="/about.html">About Me</a> / 32 <a href="/contact.html">Contact Me</a> / 33 <a href="https://github.com/F-OS">Github</a> / 34 <a href="/cat/index.html">Cat</a> 35 </nav> 36 </header> 37 38 <main> 39 TODO PUT STUFF HERE 40 </main> 41 42 <footer> 43 <hr> 44 <p style="text-align: center; font-size: 0.75em;">© Copyright 2023. Made with <a href="https://newcss.net/">love and NewCSS</a> by Reagan Fischer.</p> 45 <hr> 46 </footer> 47 </body> 48 49 </html>