水平のnavbar
が必要です。スクロール可能な1つの画像と黒い背景が必要です。黒い背景のこの写真はnavbar
以上であり、修正する必要があります。ボックスと画像付きの水平スクロール可能なナビゲーションバーが必要
\\ !!! EDIT !!! //// its like i described in my comment to your answer
i hope that is better to understand this black box takes me to an endless night :S
<head>
<style>
header {
margin_top: 0;
padding: 1em;
color: white;
background-color: black;
clear: left;
text-align: center;
}
footer {
padding: 1em;
color: white;
background-color: black;
clear: left;
text-align: center;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333333;
position: fixed;
top: 0;
width: 100%;
font-family: verdana;
}
li {
border-right: 1px solid #bbb;
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav ul a.active {
background-color: #555;
color: white;
}
nav ul a:hover {
background-color: black;
}
</style>
</head>
<!DOCTYPE html>
<meta lang="de_DE">
<html>
<body>
<header>
\t <a href="LINK" target="_blank">
\t <img src="######" alt="Picture" align="middle">
\t </a>
</header>
<nav>
<ul>
<li><b><a class="active" href="LINK">London</a></b></li>
<li><a href="#">Nizza</a></li>
<li><a href="#">California</a></li>
<li><a href="#">Munich</a></li>
\t <li><a href="#">Tokyo</a></li>
\t <li><a href="#">Mumbai</a></li>
\t <li><a href="#">Mauritius</a></li>
<li style="float:right" padding-right:"1em"><a href="#">Impressum</a></li>
</ul>
</nav>
<div style="padding:1px 16px;height:1000px;">
<article>
<h1>City of London</h1>
<p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
<p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
</article>
</div>
<footer>Copyright © i dont know</footer>
</body>
</html>
に感謝します。 –