Created
February 19, 2022 15:28
-
-
Save BlackScorp/0e0ee1c8bbb29cf3a7f4e2ff984ced8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Startseite</title> | |
<meta charset="UTF-8"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
body{display:block;margin:0;padding:0;position:absolute;width:100%;height:100%;left:0;top:0} | |
nav{margin:1rem 0} | |
nav ul{margin:0;padding:0;list-style:none;display:flex;align-items:flex-start;} | |
nav a{display:block;font-weight:bold;text-decoration:none;color:green;border:1px solid black;padding:0.5rem} | |
nav li.active a{color:white;background:green} | |
.container{width:900px;margin:auto;} | |
</style> | |
</head> | |
<body> | |
<header class="container"> | |
<nav> | |
<ul> | |
<li class="active"><a href="index.php">Startseite</a></li> | |
<li ><a href="contact.php">Kontakt</a></li> | |
<li ><a href="about.php">Über mich</a></li> | |
</ul> | |
</nav> </header> | |
<main class="container"> | |
<section id="home"> | |
<h1>Startseite</h1> | |
<p>Wilkommen auf meiner Seite</p> | |
</section> </main> | |
<footer class="container"> | |
© by knecht ruprecht 2022 | |
</footer> </body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
kk