Files
original-website/about.html
2022-11-03 16:22:40 +01:00

26 lines
758 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Home - janishutz.com</title>
<link rel="stylesheet" href="./mainstyle.css">
</head>
<body>
<ul>
<li><a href="#">Home</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Legal</a>
<div class="dropdown-content dropdown-animation">
<a href="./privacypolicy.html">Privacy Policy for apps</a>
</div>
</li>
<li><a href="./support.html">Support</a></li>
<li><a href="./about.html">About me</a></li>
</ul>
<h1>About me</h1>
<p>I am a young person that is still in the process of getting really experienced with programming. I am really passionate about my projects. You may find more of my projects on github!
</p>
<a href="https://github.com/simplePCBuilding">Github</a>
</body>
</html>