blog.html (2427B)
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="/inter.css"> 11 <link rel="stylesheet" href="/new.css"> 12 <link rel="icon" type="image/x-icon" href="/images/win95.png"> 13 <link rel="apple-touch-icon" href="/images/win95.png"> 14 <style> 15 /* Add CSS for the image */ 16 .profile-image { 17 float: left; 18 /* Float the image to the left of the text */ 19 margin-right: 20px; 20 /* Add some margin to separate it from the text */ 21 border: 2px solid #ccc; 22 /* Add a border around the image */ 23 padding: 5px; 24 /* Add padding inside the border */ 25 } 26 </style> 27 </head> 28 29 <body> 30 <header style="padding: 20px 0; text-align: center;"> 31 <h1>Reagan's Code Corner</h1> 32 <nav style="display: inline-block;"> 33 <a href="/">Home</a> | 34 <a href="/projects.html">Projects</a> | 35 <a href="/blog.html">Blog</a> | 36 <a href="/resume.pdf">Resume</a> | 37 <a href="/contact.html">Contact Me</a> | 38 <a href="/cat/index.html">Cat</a> 39 </nav> 40 </header> 41 42 <img alt="Under Construction" src="images/page-under-construction.gif"> 43 <br> 44 Coming soon... 45 </main> 46 47 <footer> 48 <hr> 49 <p style="text-align: center; font-size: 0.75em;">© Copyright 2024. Made with <a 50 href="https://newcss.net/">love and NewCSS</a> by Reagan Fischer.</p> 51 <hr> 52 </footer> 53 <script defer> 54 var _paq = window._paq = window._paq || []; 55 /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ 56 _paq.push(['trackPageView']); 57 _paq.push(['enableLinkTracking']); 58 (function () { 59 var u = "//matomo.thespringstechguy.com/"; 60 _paq.push(['setTrackerUrl', u + 'matomo.php']); 61 _paq.push(['setSiteId', '1']); 62 var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0]; 63 g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s); 64 })(); 65 </script> 66 </body> 67 68 </html>