A hacking themed game that ties into a website!

add news

wish13yt 9a860ef0 8f90454e

Changed files
+47 -1
site
+25
site/game/browser.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 + <link rel="preconnect" href="https://fonts.googleapis.com"> 7 + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 8 + <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> 9 + <title>NetBrowse</title> 10 + <style> 11 + * { 12 + text-align: center; 13 + font-family: "Roboto", sans-serif; 14 + } 15 + </style> 16 + </head> 17 + <body> 18 + <h1>NetBrowse Search</h1> 19 + <hr> 20 + <p>Whoops! Search isn't accessible in your region.</p> 21 + <h1>Hyperlinks</h1> 22 + <hr> 23 + <a href="news.html"><p>News</p></a> 24 + </body> 25 + </html>
+1 -1
site/game/game.html
··· 52 52 </div> 53 53 <div> 54 54 <a href="browser.html"><img src="images/browser.png" id="browser"> 55 - <h3 id="browser_text"><b>Browser</b></h3> 55 + <h3 id="browser_text"><b>NetBrowse</b></h3> 56 56 </a> 57 57 </div> 58 58 </body>
+21
site/game/news.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>CCNews</title> 7 + <style> 8 + .greg { 9 + text-align: left; 10 + } 11 + </style> 12 + </head> 13 + <body> 14 + <h1 id="greg">CCNews - C your news, now.</h1> 15 + <hr> 16 + <h2>BREAKING! Government passes new Internet censorship bill- set to affect everyone!</h2> 17 + <p>The Freemairc government announced this Saturday that they have passed the KASH (Kids Are Safe Here) act through the House and Senate, and is now being signed by the President! 18 + It is set to be enacted January 25th, 2027, and will require ID checks and face scans to connect to the internet. 19 + </p> 20 + </body> 21 + </html>