website

Website contents
git clone git://git.reagancfischer.dev/website.git
Log | Files | Refs

about.html (2362B)


      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     <main>
     43         TODO PUT STUFF HERE
     44     </main>
     45 
     46     <footer>
     47         <hr>
     48         <p style="text-align: center; font-size: 0.75em;">&copy; Copyright 2024. Made with <a
     49                 href="https://newcss.net/">love and NewCSS</a> by Reagan Fischer.</p>
     50         <hr>
     51     </footer>
     52     <script defer>
     53         var _paq = window._paq = window._paq || [];
     54         /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
     55         _paq.push(['trackPageView']);
     56         _paq.push(['enableLinkTracking']);
     57         (function () {
     58             var u = "//matomo.thespringstechguy.com/";
     59             _paq.push(['setTrackerUrl', u + 'matomo.php']);
     60             _paq.push(['setSiteId', '1']);
     61             var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
     62             g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s);
     63         })();
     64     </script>
     65 </body>
     66 
     67 </html>