My Website
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="header" href="index.html">
13 Home
14 </a>
15 <span>
16 <a class="headerselected" href="projects.html">
17 Projects
18 </a>
19 </span>
20 <span>
21 <a class="header" href="blog.html"> Blog</a>
22 </span>
23 </div>
24 </div>
25
26 <div id="main">
27 <div>
28 <div class="subheader" id="CherryEngine">
29 Cherry Engine
30 </div>
31 <a class="imagewithtext" href="https://www.github.com/WillMexe/CherryEngine">
32 <img style="width: 256px" src="chlogo.png">
33 </a>
34 <div class="content">
35 This is my own game engine written in <a href="https://www.python.org/" URL><b>Python</b></a> using
36 <a href="https://www.pygame.org/" URL><b>Pygame</b></a> a python library intended for making video games.
37 The engine currently lacks alot of features such as lighting and proper collisions but the baseline like a camera,
38 saving and loading levels and movement are there and it is taking shape albeit slowly. <br> <br>
39 The engine is licenced under the GNU General Public License and you can find the source code <a href="https://www.github.com/WillMexe/CherryEngine"><strong>Here</strong></a>.
40 </div>
41 </div>
42 <div>
43 <div class="subheader" id="CherryEngine" style="margin-top: 150px;">
44 School Spell Check Thingy
45 </div>
46 <div class="content">
47 This is a little project i made because i'm frankly terrible at studying and epsecially language classes so i made this quick python script to help with my
48 spelling. You can visit it <a href="projects/spellcheck.html"><strong>Here</strong></a> have fun! You can add your own text files at the side as it is mostly for me documentation will probably
49 not be made.
50 </div>
51 </div>
52 </div>
53 </body>
54</html>