diff options
Diffstat (limited to 'factorio.html')
-rw-r--r-- | factorio.html | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/factorio.html b/factorio.html new file mode 100644 index 0000000..3c72789 --- /dev/null +++ b/factorio.html @@ -0,0 +1,110 @@ +<!DOCTYPE html> + +<html lang="en"> + +<head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="description" content="AlmightyMiau's Personal Website"> + <link href="styles.css" rel="stylesheet"> + <title>Miau - factorio</title> + <link rel="icon" type="image/x-icon" href="miau.jpg"> + <script> + function hidePages() { + let status = document.getElementById("pages").style.display; + if (status === "none") { + document.getElementById("pages").style.display = "block"; + } else { + document.getElementById("pages").style.display = "none"; + } + } + function hideBut() { + let status = document.getElementById("buttons").style.display; + if (status === "none") { + document.getElementById("buttons").style.display = "block"; + } else { + document.getElementById("buttons").style.display = "none"; + } + } + </script> +</head> + +<body> + <div id="container"> + <div class="topbar"></div> + <div id="flex"> + <main> + <div class="title"> + Factorio + <img src="Factorio-gear_600x600.webp" style="width: 10%; margin-right: 5px;"> + </div> + <div class="content"> + <div class="date">10/23/2024</div> + <p> + I just want to say that I have passed 1300 hours total and 600 on SE. I didn't finish SE before the dlc came out though, and got really burned out in trying to :(. + </p> + </div> + <div class="content"> + <div class="date">7/4/2024</div> + <p> + Factorio is my favorite game ever and as of today, I have 1203.1 hours logged. I am currently + playing an overhaul mod called Space Exploration (SE), and have been playing it for (exactly) + 500 hours. + </p> + </div> + </main> + <aside> + <div class="sidebar-title"> Pages <button onclick="hidePages()">⇕</button></div> + <div id="pages"> + <nav id="nav"> + <ul> + <li> + <a href="index.html">Home</a> + </li> + <li> + <a href="silly.html">Silly</a> + </li> + <li> + <a href="factorio.html">Factorio</a> + </li> + <li> + <a href="art.html">Art</a> + </li> + <li> + <a href="cats.html">Cats</a> + </li> + </ul> + </nav> + </div> + <div class="sidebar-title"> Buttons <button onclick="hideBut()">⇕</button></div> + <div id="buttons"> + <nav id="nav"> + <div style="width: 88px; margin:0 auto;" id="buttons"> + <br> + <a href="https://goblin-heart.net/" target="_blank"><img + src="https://goblin-heart.net/assets/images/gg-button.gif"></a> + <br> + <a href="https://goblin-heart.net/sadgrl/" target="_blank"><img + alt="88x31 button that says LEARN - HTML, Layouts, CSS, Guides, Websites: Learn @ sadgrl.online" + src="https://goblin-heart.net/assets/images/sadgrl-button.gif"></a> + <br> + <a href="https://yesterweb.org/no-to-web3/"><img style="border:1px solid white;" + src="https://auzziejay.com/images/noweb32.gif"></a> + <br> + <a href="https://yesterweb.org/no-to-web3/"><img style="border:1px solid white;" + src="https://yesterweb.org/img/button.png"></a> + <br> + <a href="https://megidolaon.gay"><img + src="https://megidolaon.gay/media/megidolaongay.png"></a> + <br> + </div> + <br> + </nav> + </div> + </aside> + </div> + <footer id="footer">Δ Copyworng :3</footer> + </div> +</body> + +</html>
\ No newline at end of file |