mawacode.de/aboutme.html

81 lines
2.1 KiB
HTML
Raw Normal View History

2024-01-22 22:35:40 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>mawacode.de</title> <link href="css/style.css" rel="stylesheet" />
2024-01-23 19:48:44 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-01-22 22:35:40 +01:00
</head>
<body>
<div class="container">
<div class="navbar">
<img src="webicons/logo.png" class="logo">
<nav>
<ul id="menuList">
2024-01-25 23:58:10 +01:00
<li><a href="index.html" id="homenav"></a></li>
<li><a href="aboutme.html" id="aboutmenav"></a></li>
<li><a href="projects.html" id="projectsnav"></a></li>
<li><a href="contactme.html" id="contactnav"></a></li>
2024-01-22 22:35:40 +01:00
</ul>
</nav>
<img src="webicons/menu.png" class="menu-icon" onclick="togglemenu()">
<img src="webicons/ger.png" id="lang" onclick="langChange()">
2024-01-22 22:35:40 +01:00
</div>
<div class="row">
<div class="col-1">
2024-01-25 23:58:10 +01:00
<h1 id="aboutmetitle"></h1>
<h2 id="aboutme1"></h2>
<p></p>
<h2 id="aboutme2"></h2>
<p></p>
<h2 id="aboutme3"></h2>
2024-01-22 22:35:40 +01:00
<ul id="aboutmelinks">
2024-01-25 23:58:10 +01:00
<li><a href="aboutme/cats.html" id="aboutmebutton1"></a></li>
<li><a href="aboutme/linux.html" id="aboutmebutton2"></a></li>
<li><a href="aboutme/techno.html" id="aboutmebutton3"></a></li>
2024-01-22 22:35:40 +01:00
</ul>
</div>
<div class="col-2">
<img src="webicons/foto.png" class="fotovonmir">
</div>
2024-01-25 23:58:10 +01:00
</div>
2024-01-22 22:35:40 +01:00
2024-01-25 23:58:10 +01:00
<div class="socialmedia">
<a href="https://feddit.de/u/mawacode"><img src="webicons/lemmy.png"></a>
<a rel="me" href="https://hessen.social/@mawacode"><img src="webicons/mastodon.png"></a>
<a href="https://github.com/malikwachter"><img src="webicons/GitHub.png"></a>
2024-01-25 23:58:10 +01:00
</div>
2024-01-22 22:35:40 +01:00
</div>
2024-01-25 23:58:10 +01:00
<script>
var menuList = document.getElementById("menuList");
2024-01-22 22:35:40 +01:00
2024-01-25 23:58:10 +01:00
menuList.style.maxHeight = "0px";
2024-01-22 22:35:40 +01:00
2024-01-25 23:58:10 +01:00
function togglemenu(){
2024-01-22 22:35:40 +01:00
2024-01-25 23:58:10 +01:00
if(menuList.style.maxHeight == "0px")
{
menuList.style.maxHeight = "130px";
}
else
{
menuList.style.maxHeight = "0px";
}
2024-01-22 22:35:40 +01:00
2024-01-25 23:58:10 +01:00
}
2024-01-22 22:35:40 +01:00
2024-01-25 23:58:10 +01:00
</script>
2024-01-22 22:35:40 +01:00
2024-01-25 23:58:10 +01:00
<script src="js/lang.js"></script>
2024-01-22 22:35:40 +01:00
</body>
</html>