at master 1.4 kB view raw
1<html lang="en"> 2 <head> 3 <link rel="stylesheet" href="styles.css"> 4 5 <meta charset="UTF-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <title>My Website</title> 8 </head> 9 <body> 10 <div id="headers"> 11 <div id="main"> 12 <a class="headerselected" href="index.html"> 13 Home 14 </a> 15 <span> 16 <a class="header" href="projects.html"> Projects </a> 17 </span> 18 <span> 19 <a class="header" href="blog.html"> Blog </a> 20 </span> 21 </div> 22 </div> 23 24 <div id="main"> 25 <div> 26 <div class="subheader"> 27 About Me 28 </div> 29 <div class="imagewithtext"> 30 <img style="width: 256px" src="logo.png"> 31 </div> 32 <button class="content" onclick=""> 33 I make stuff for fun mostly in python. Currently my main project is <a href="projects.html #CherryEngine"><strong>Cherry Engine</strong></a> 34 a 2d game engine being developed in <a href="https://www.python.org"><strong>Python</strong></a> using the <a href="https://www.pygame.org"><strong>Pygame</strong></a> library. 35 </button> 36 </div> 37 </div> 38 </body> 39</html>