internetlist.html (1556B)
1 <!DOCTYPE html> 2 <html lang="en-GB"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="author" content="Shipwreckt"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>Internet index</title> 8 <link rel="stylesheet" href="../styles.css"> 9 <link rel="icon" href="../Images/favi.png" type="image/x-icon"> 10 </head> 11 <body> 12 <header> 13 <nav> 14 <ul> 15 <li><a href="../index.html">Home</a></li> 16 <li><a href="../links.html">Links</a></li> 17 <li><a href="../projects.html">Projects</a></li> 18 <li><a href="../contact.html">Contact</a></li> 19 </ul> 20 </nav> 21 </header> 22 <main> 23 <h1>Articles about the internet</h1> 24 <p>Sometimes I write about how to stay safe online and some thoughts about the modern internet, so have a look around!</p> 25 <section class="posts"> 26 27 <h2>How to stay safe Online</h2> 28 <p>A series of articles I have wrote about how I stay safe online.</p> 29 <ul> 30 <li><a href="internet/safety/00Intro.html">Introduction</a></li> 31 <li><a href="internet/safety/01Profiles.html">Online profiles</a></li> 32 <li><a href="internet/safety/02Passwords.html">Passwords</a></li> 33 <li><a href="internet/safety/03Browser.html">Web Browsers</a></li> 34 </ul> 35 <hr> 36 <h2>The internet you never see (Darknet)</h2> 37 <ul> 38 <li><a href="internet/Darknet/00I2P.html">I2P</a> (The Invisible Internet Project)</li> 39 </ul> 40 </main> 41 </body> 42 </html> 43