From 2cc2d7f005fb7f61896a66d94e3ee72ffe784cff Mon Sep 17 00:00:00 2001 From: Nick Lamicela Date: Mon, 6 Sep 2021 16:57:51 -0400 Subject: [PATCH] Switch to semantic tags where possible --- how-to-host-minecraft-from-scratch.html | 14 +++++ index.html | 73 +++++++++++-------------- style-3.css | 22 ++++++-- 3 files changed, 63 insertions(+), 46 deletions(-) create mode 100644 how-to-host-minecraft-from-scratch.html diff --git a/how-to-host-minecraft-from-scratch.html b/how-to-host-minecraft-from-scratch.html new file mode 100644 index 0000000..8cd07dd --- /dev/null +++ b/how-to-host-minecraft-from-scratch.html @@ -0,0 +1,14 @@ + + + + How To Host Minecraft From Scratch + + + + +
+

How To Host Minecraft From Scratch

+
A Noob's Guide
+
+ + \ No newline at end of file diff --git a/index.html b/index.html index 0454f8c..b0d545c 100644 --- a/index.html +++ b/index.html @@ -1,53 +1,46 @@ - -Nupa's Page - - - + Nupa's Page + + -
+
+

Nupa's Page

+
A place to show off my projects.
-

Nupa's Page

-A place to show off my projects. +
+

Braceless Javascript

+ 2018. A couple of short programs written in a subset of javascript. Specifically, javascript but you can't use anything with curly braces in it, like 'if' or 'for'. Instead, ternaries and lambdas give you all the flow control you need. Has a lispy flavor. + FizzBuzz (Source), + Bottles (Source). +
-
-
+
+

Flistify

+ 2018. A script to bulk-resize images for an f-list gallery, using windows batch and imagemagick. Source. +
-

Braceless Javascript

-

- 2018. A couple of short programs written in a subset of javascript. Specifically, javascript but you can't use anything with curly braces in it, like 'if' or 'for'. Instead, ternaries and lambdas give you all the flow control you need. Has a lispy flavor. - FizzBuzz (Source), - Bottles (Source). -

+
+

Portal ZZT

+ 2008. A portal clone in the ZZT Engine. +
-

Flistify

-

- 2018. A script to bulk-resize images for an f-list gallery, using windows batch and imagemagick. Source. -

+
+

ZZT Nanogames

+ 2008. A collection of ZZT games that use only one screen each. Also includes Eight Legged Express, which I believe was made in one weekend as a challenge. +
-

Portal ZZT

-

- 2008. A portal clone in the ZZT Engine. -

+
+

Collabyrinth

+ 2008. A collaborative labyrinth ZZT game. I made the overworld and recruited other members of the z2 forums to fill it with puzzles and obstacles. +
-

ZZT Nanogames

-

- 2008. A collection of ZZT games that use only one screen each. Also includes Eight Legged Express, which I believe was made in one weekend as a challenge. -

- -

Collabyrinth

-

- 2008. A collaborative labyrinth ZZT game. I made the overworld and recruited other members of the z2 forums to fill it with puzzles and obstacles. -

- -

Traps and Zoids

-

- 2007. Some hand-drawn cartoons and very old web design. Good old HTML 4.0 Transitional. -

- -
+
+

Traps and Zoids

+ 2007. Some hand-drawn cartoons and very old web design. Good old HTML 4.0 Transitional. +
+ \ No newline at end of file diff --git a/style-3.css b/style-3.css index d2a32ba..7212614 100644 --- a/style-3.css +++ b/style-3.css @@ -1,10 +1,11 @@ -html { - margin: 0 auto; - max-width: 40rem; -} - body { + background-image: url('images/magenta-tile-4.png'); + max-width: min(90vw, 40rem); + margin: 1rem auto; +} + +main { font-family: sans-serif; background-color: black; color: hotpink; @@ -12,10 +13,19 @@ body { padding: 1rem; } -#title { +h1 { text-align: center; } .subtitle { + text-align: center; font-style: italic; } + +a:link { + color: skyblue +} + +a:visited { + color: gray +}