Ich bin noch kompletter Anfänger und versuche mich an einer Übungsseite, aber irgendwie schaffe ich es nicht, dass der Google-Link rechts angezeigt wird.
Was übersehe ich da / mache ich falsch?
PS: ja ich weiß das es noch katastrophal aussieht.
HTML
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> Erste Seite</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>Erste Webseite</h1>
</header>
<nav>
<ul>
<li><a href="#">Startseite </a></li>
<li><a href="#">Über mich</a></li>
<li><a href="#">...</a></li>
<li><a href="#">Impressum</a></li>
</ul>
</nav>
<section>
<h2>Willkommen auf meiner ersten Webseite</h2>
<p>Lorem ipsum dolor sit amet, consetetur</p>
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
</p>
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore </p>
<a href="http://google.com">Google</a>
</section>
<footer>
<p><a href="Index.html">(c) Impressum</a></p>
</footer>
</div>
</body>
</html>
Alles anzeigen
Code
body{margin: 0;
margin-top: 5%;
padding: 0;}
header,nav, section, footer{display: block;}
nav ul {text-align: center;}
nav li{display: inline-block;
padding: 10px;}
nav a{text-decoration: none;}
section h2{text-align: center;}
section a{text-decoration: none;
font-weight: bold;
color: gold;
background-color: royalblue;
padding: 3px;
border-radius: 5px;
}
header{background-color: yellow;
padding: 5px;
text-align: center;
}
nav{background-color: orange;
}
section{background-color: yellowgreen;
border-radius: 5px;
padding: 10px;
}
footer{background-color: deepskyblue;
padding-left: 10px;
text-align: center;
}
.wrapper{
max-width: 60%;
background-color: lightgray;
border-style: none;
margin: auto;
padding: 10px;}
Alles anzeigen