style.css
CSS
body {
margin: 0;
padding: 0;
font-family: Arial;
font-weight: 400;
font-style: normal;
background: url('link_zu_deinem_bg.png') no-repeat center;
}
header {
font-size: 70pt;
text-align: center;
}
nav {
width: 100%;
height: 50px;
text-align: center;
line-height: 50px;
background: #2980b9;
}
nav > ul {
margin: auto;
padding: 0;
}
nav > ul > li {
display: inline-block;
float: none;
}
nav > ul > li > a {
color: #fff;
display: block;
margin: 0 10px;
padding: 0 15px;
background: red;
text-decoration: none;
}
Alles anzeigen
html
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<link rel="stylesheet" href="style.css" charset="utf-8">
</head>
<body>
<header>Test</header>
<nav>
<ul>
<li><a href="#">Startseite</a></li>
<li><a href="#">Gruss & Wunschbox</a></li>
<li><a href="#">Unser Team</a></li>
</ul>
</nav>
<footer>Footer</footer>
</body>
</html>
Alles anzeigen