diff options
| -rw-r--r-- | 404.html | 14 | ||||
| -rw-r--r-- | index.html | 19 | ||||
| -rw-r--r-- | styles.css | 24 |
3 files changed, 57 insertions, 0 deletions
diff --git a/404.html b/404.html new file mode 100644 index 0000000..c5e19a1 --- /dev/null +++ b/404.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<head> + <link rel="stylesheet" href="styles.css"> +</head> +<body> + <header> + <div class="logo">Copywrong</div> + </header> + <article class="content"> + <h1>Page not found</h1> + <p>The page you requested could not be found.</p> + <p><a href="/">Go home</a></p> + </article> +</body> diff --git a/index.html b/index.html new file mode 100644 index 0000000..3f7db8d --- /dev/null +++ b/index.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<head> + <link rel="stylesheet" href="styles.css"> +</head> +<body> + <header> + <div class="logo">Copywrong</div> + </header> + <article class="content"> + <p>We're a group of people that hate Copyright.</p> + <hr style="border: none;" /> + <p>You can find us on:</p> + <ul> + <li>cgit: <a href="https://cgit.copywrong.net">cgit.copywrong.net</a></li> + <li>Pleroma: <a href="https://pleroma.copywrong.net">pleroma.copywrong.net</a></li> + <li>Lemmy: <a href="https://lemmy.copywrong.net">lemmy.copywrong.net</a></li> + </ul> + </article> +</body> diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..4b0b6a2 --- /dev/null +++ b/styles.css @@ -0,0 +1,24 @@ +body { + background-color: snow; + font-family: Arial, sans; +} + +.logo { + text-align: center; + font-weight: bold; + font-size: 50px; + margin-bottom: 0.5em; +} + +.content { + justify-self: center; + width: 1000px; + border: 1px solid #333333; + box-shadow: 0 0 0.25em #444444; + padding: 8px 12px; + background-color: white; +} + +footer { + justify-self: center; +} |
