This commit is contained in:
Zoeycode 2021-08-19 21:03:30 +00:00
parent 815cf10383
commit bc9a0786ab
6 changed files with 53 additions and 13 deletions

View file

@ -3,13 +3,20 @@
<head><meta charset="utf-8">
<link rel="stylesheet" href="/static/site.css">
<meta name="referrer" content="no-referrer">
<link rel="stylesheet" href="/styles/index.css">
<title>zoey.dev</title><base href="https://zoey.dev"></head>
<body>
<h1>404 Not Found</h1>
<header class="main-header">
<span class="name">Zoey</span>'s website |
<span class="pronouns">she/her</span>
</header>
<main class="page">
<h1>404 Not Found</h1>
<p>The page or resource requested does not exist. <a href="/">Back to home</a></p>
</main>
</body>
</html>

1
CNAME
View file

@ -1 +0,0 @@
zoey.dev

View file

@ -3,14 +3,24 @@
<head><meta charset="utf-8">
<link rel="stylesheet" href="/static/site.css">
<meta name="referrer" content="no-referrer">
<link rel="stylesheet" href="/styles/index.css">
<title>zoey.dev</title><base href="https://zoey.dev"></head>
<body>
<h1>Welcome</h1>
<p>Welcome to the site!</p>
<p>Testing a change.</p>
<header class="main-header">
<span class="name">Zoey</span>'s website |
<span class="pronouns">she/her</span>
</header>
<main class="page">
<h1>Zoeys Website</h1>
<p>Welcome to the site! Its still very much a work in progress.</p>
<p>Links:</p>
<ul>
<li><a href="https://github.com/Zoeycode" rel="noopener noreferrer" target="_blank">GitHub</a></li>
</ul>
</main>
</body>
</html>

View file

@ -1,4 +0,0 @@
body {
font-family: sans-serif;
margin: 0;
}

21
styles/index.css Normal file
View file

@ -0,0 +1,21 @@
body {
font-family: sans-serif;
margin: 0;
}
header.main-header {
display: block;
padding: 4px;
background-color: #0ad;
}
a {
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
main.page {
margin: 8px;
}

View file

@ -3,13 +3,20 @@
<head><meta charset="utf-8">
<link rel="stylesheet" href="/static/site.css">
<meta name="referrer" content="no-referrer">
<link rel="stylesheet" href="/styles/index.css">
<title>zoey.dev / Test Page</title><base href="https://zoey.dev"></head>
<body>
<h1>Heading</h1>
<header class="main-header">
<span class="name">Zoey</span>'s website |
<span class="pronouns">she/her</span>
</header>
<main class="page">
<h1>Heading</h1>
<p><em>Hi</em> there.</p>
</main>
</body>
</html>