mawacode.de/index.html
2024-01-25 23:58:10 +01:00

74 lines
1.8 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>mawacode.de</title>
<link href="css/style.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<div class="navbar">
<img src="webicons/logo.png" class="logo">
<nav>
<ul id="menuList">
<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>
</ul>
</nav>
<img src="webicons/menu.png" class="menu-icon" onclick="togglemenu()">
<img src="webicons/ger.png" id="lang" onclick="langChange()">
</div>
<div class="row">
<div class="col-1">
<h1 id="welcometitle"></h1>
<h2 id="welcome1"></h2>
<p></p>
<h2 id="welcome2"></h2>
</div>
<div class="col-2">
<img src="webicons/foto.png" class="fotovonmir">
</div>
</div>
<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>
</div>
</div>
<script>
var menuList = document.getElementById("menuList");
menuList.style.maxHeight = "0px";
function togglemenu(){
if(menuList.style.maxHeight == "0px")
{
menuList.style.maxHeight = "130px";
}
else
{
menuList.style.maxHeight = "0px";
}
}
</script>
<script src="js/lang.js"></script>
</body>
</html>