diff options
author | Alex Scerba <alex@scerba.org> | 2024-01-09 15:26:06 -0500 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-01-09 15:26:06 -0500 |
commit | 9517ece52470b12b090ff98749b85eec275263a5 (patch) | |
tree | 0239e6aba9e11c833b9cf817e0740f0b69f9d840 /index.html | |
parent | c5a7bce7093fc02456d228056d7fa6952a1e2503 (diff) |
Initial static site.
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..fb30b2c --- /dev/null +++ b/index.html @@ -0,0 +1,49 @@ +<!DOCTYPE html> +<html lang="en-US"> + <head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="author" content="Alexander Rees Scerba" /> + <title>Home - Scerba.org</title> + <meta name="description" content="Homepage" /> + <meta name="keywords" content="home"> + <link rel="canonical" href="https://www.scerba.org/index.html"> + <link rel="stylesheet" href="./static/style.css" /> + <link rel="shortcut icon" href="./static/favicon.ico" type="image/x-icon" /> + </head> + <body> + <header> + <a href="/" class="logo-w-name"> + <!--<img src="/static/logo.svg" alt="Logo" class="logo"/>--> + <span class="name">Alex Scerba</span> + </a> + <div class="main-nav-position"> + <input type="checkbox" class="toggler"> + <div class="hamburger"><div></div></div> + <nav aria-labelledby="global-navigation" class="main-nav"> + <a href="./index.html">Home</a> + <a href="./blog.html">Blog</a> + <a href="./wip.html">Gallery</a> + <a href="./about.html">About</a> + <a href="./faq.html">FAQ</a> + </nav> + </div> + </header> + + <main class="landing-page"> + <section class="landing-text"> + <h1>Scerba.org</h1> + <p class="subtext">Design, make, tinker.</p> + </section> + </main> + + <footer> + <!-- <img src="/static/logo.svg" alt="Logo" class="footer-logo"/> --> + <address> + <p>Contact: <a href="mailto:alex@scerba.org">alex@scerba.org</a></p> + <p>Design Site: <a href="https://alexscerba.com" target="_blank" rel="noopener noreferrer">alexscerba.com</a></p> + </address> + </footer> + </body> +</html> |