blob: d9ad11699bedba74aa99fc8e241784722541648e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<!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>
<div class="top-bar">
<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>
</div>
<div class="landing-page">
<div class="landing-text">
<span>Design.</span>
<span>Make.</span>
<span>Tinker.</span>
</div>
<span class="down-arrow"></span>
</div>
</header>
<main style="padding-top: 0;">
<section>
<hr style="margin-top: 0;">
<h1 style="font-size: 2rem; margin-top: 3rem;">Scerba.org</h1>
<p>The personal website of Alex Scerba.</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>
|