diff --git a/html/fishing-minigame.html b/html/fishing-minigame.html deleted file mode 100644 index 05bf416..0000000 --- a/html/fishing-minigame.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - TITLE - - - - - - - - - - - diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..2ad6ccf --- /dev/null +++ b/html/index.html @@ -0,0 +1,54 @@ + + + + + + + fishing minigame + + + + + +
+

fishing minigame

+
+ + + +

welcome! to the fishing minigame zone.

+

use the up and down keys to move the hook, space to catch the fish, and escape to end the game.

+

written in rustlang. a macroquad port of a terminal game i made for a game engines class. sorry the font is so blurry

+

source code can be found on gitlab

+

works cited

+ + + + + diff --git a/html/styles.css b/html/styles.css new file mode 100644 index 0000000..4d3822f --- /dev/null +++ b/html/styles.css @@ -0,0 +1,36 @@ +html { + background: #eee; +} + +h1:before { + display: inline; + content: '~ '; +} + +h1:after { + display: inline; + content: ' ~'; +} + +body { + width: 80%; + margin: auto; + font-size: 18px; +} + +h1 { + font-size: 1.5em; +} + +img.emoji { + display: inline; + width: 0.8em; + height: 0.8em; +} + +footer { + margin-top: 3.0em; + margin-bottom: 2.0em; + text-align: center; + font-size: 0.9em; +}