A hacking themed game that ties into a website!

website

Wish 3d51b1cf 15548e44

Changed files
+57
site
site/.gitkeep

This is a binary file and will not be displayed.

+25
site/game/game.html
··· 1 + <!DOCTYPE html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="UTF-8"> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 + <title>GregHack - MAINFRAME</title> 7 + <link rel="preconnect" href="https://fonts.googleapis.com"> 8 + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 9 + <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> 10 + <style> 11 + * { 12 + font-family: "Roboto", sans-serif; 13 + } 14 + body { 15 + background-color: black; 16 + } 17 + p { 18 + color: greenyellow; 19 + } 20 + </style> 21 + </head> 22 + <body> 23 + <p>Sorry! The game is not finished at the moment.</p> 24 + </body> 25 + </html>
+32
site/index.html
··· 1 + <!DOCTYPE html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="UTF-8"> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 + <title>GregHack</title> 7 + <link rel="preconnect" href="https://fonts.googleapis.com"> 8 + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 9 + <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> 10 + <style> 11 + * { 12 + font-family: "Roboto", sans-serif; 13 + } 14 + body { 15 + background-color: black; 16 + } 17 + h1, p, button { 18 + color: greenyellow; 19 + } 20 + button { 21 + background-color: black; 22 + border-radius: 8px; 23 + } 24 + </style> 25 + </head> 26 + <body> 27 + <img src="../logo.png" /> 28 + <h1>Try to hack in to the government with our newest game: GregHack!</h1> 29 + <p>Internet access required to play the game. (unless you download the website needed for the game)</p> 30 + <a href="game/game.html"><button>INTO THE MAINFRAME (click for the website needed to play the game)</button></a> 31 + </body> 32 + </html>