mawacode.de/index.html

71 lines
1.9 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>
2024-01-22 22:35:40 +01:00
<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">
<li><a href="index.html">Home</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contactme.html">Contact Me</a></li>
</ul>
</nav>
<img src="webicons/menu.png" class="menu-icon" onclick="togglemenu()">
<a href="#ger"><img src="webicons/ger.png" id="lang"></a>
2024-01-22 22:35:40 +01:00
</div>
<div class="row">
<div class="col-1">
<h1>Hallo Internet!</h1>
<h2>Ich bin Malik, irgend so ein Typ im Web, der gerade Programmieren lernt.</h2>
<p> </p>
<h2>Willkommen auf meiner persönlichen Webseite. Hier erfährst du mehr über mich und meine Projekte! Danke fürs Vorbeischauen. :)</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>
2024-01-22 22:35:40 +01:00
</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>
</body>
</html>