finished menu and added another page

This commit is contained in:
janis
2022-11-04 20:41:46 +01:00
parent 1a488cf029
commit d03b3b9718
4 changed files with 76 additions and 13 deletions

36
projects.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>Projects - janishutz.com</title>
<link rel="stylesheet" href="./mainstyle.css">
</head>
<body>
<div class="stickybox">
<ul class="Menu">
<li class="mainitems"><a href="./index.html">Home</a></li>
<li class="dropdown mainitems">
<a href="./projects.html">Projects</a>
<ul class="dropdown-menu">
<li class="subitems"><a href="./privacypolicy.html">QR & Barcode Insight</a></li>
<li class="subitems"><a href="./privacypolicy.html">StorageManager</a></li>
<li class="subitems"><a href="./privacypolicy.html">FSR Image & Video Upscaler Frontend</a></li>
<li class="subitems"><a href="./privacypolicy.html">MusicPlayer</a></li>
<li class="subitems"><a href="./privacypolicy.html">BiogasControllerApp</a></li>
</ul>
</li>
<li class="dropdown mainitems">
<a href="#">About</a>
<ul class="dropdown-menu">
<li class="subitems"><a href="./privacypolicy.html">Privacy Policy for apps</a></li>
<li class="subitems"><a href="./about.html">About me</a></li>
</ul>
</li>
<li class="mainitems"><a href="./support.html">Support</a></li>
</ul>
</div>
<h1>My projects</h1>
<p>NOTE: This page is still in development!</p>
<a href="./index.html">Go back</a>
</body>
</html>