Add about page

master
DavidDGTNT 2021-11-22 20:49:11 +00:00
parent ab20418769
commit 907228bbeb
2 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,13 @@
## About the author
David Jentes is a 13 year old programmer and author. He is a member of the programming group KygekTeam and programs various things, including this website. Here is a list of some things he has created:
* Ports of some of the Minecraft plugins made by KygekTeam
* David Calc, plus its GUI and Java variants
* Various C++ converters
* His own website
* Content generation script for generating HTML from specified Markdown files
## About Lyza
Lyza in real life is David's dog. Lyza barks a lot in David's backyard, and loves to play ball. She is adventurous and will take any chance she gets to go on an adventure. Lyza would love these books if she could read them!

36
src/about/index.html Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
<link rel="stylesheet" href="../assets/css/main.css">
<link rel="stylesheet" href="../assets/css/fonts.css">
</head>
<body>
<header>
<img src="../assets/img/lyza.png" width="250" height="250">
<nav>
<ul>
<li><a href="../index.html" class="current">Home</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</header>
<main>
<h2>About the author</h2>
<p>David Jentes is a 13 year old programmer and author. He is a member of the programming group KygekTeam and programs various things, including this website. Here is a list of some things he has created:</p>
<ul>
<li>Ports of some of the Minecraft plugins made by KygekTeam</li>
<li>David Calc, plus its GUI and Java variants</li>
<li>Various C++ converters</li>
<li>His own website</li>
<li>Content generation script for generating HTML from specified Markdown files</li>
</ul>
<h2>About Lyza</h2>
<p>Lyza in real life is David's dog. Lyza barks a lot in David's backyard, and loves to play ball. She is adventurous and will take any chance she gets to go on an adventure. Lyza would love these books if she could read them!</p>
</main>
</body>
</html>