website

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

contact.html (2039B)


      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 </head>
     15 
     16 <body>
     17     <header style="padding: 20px 0; text-align: center;">
     18         <h1>Reagan's Code Corner</h1>
     19         <nav style="display: inline-block;">
     20             <a href="/">Home</a> |
     21             <a href="/projects.html">Projects</a> |
     22             <a href="/blog.html">Blog</a> |
     23             <a href="/resume.pdf">Resume</a> |
     24             <a href="/contact.html">Contact Me</a> |
     25             <a href="/cat/index.html">Cat</a>
     26         </nav>
     27     </header>
     28 
     29     <main>
     30         <p>You can contact me <a href="mailto:reagan@reagancfischer.dev">by e-mail
     31                 (reagan@reagancfischer.dev)</a>.</p>
     32 
     33     </main>
     34 
     35     <footer>
     36         <hr>
     37         <p style="text-align: center; font-size: 0.75em;">&copy; Copyright 2024. Made with <a
     38                 href="https://newcss.net/">love and NewCSS</a> by Reagan Fischer.</p>
     39         <hr>
     40     </footer>
     41     <script defer>
     42         var _paq = window._paq = window._paq || [];
     43         /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
     44         _paq.push(['trackPageView']);
     45         _paq.push(['enableLinkTracking']);
     46         (function () {
     47             var u = "//matomo.thespringstechguy.com/";
     48             _paq.push(['setTrackerUrl', u + 'matomo.php']);
     49             _paq.push(['setSiteId', '1']);
     50             var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
     51             g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s);
     52         })();
     53     </script>
     54 </body>
     55 
     56 </html>