<!doctype html>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Selector Basics</title>
<style>
body{height:1000px;}
ul{list-style-type:none; width:500px; height:50px; margin:auto auto; padding:0; border:solid 1px #DB0800; }
ul li{display:inline;}
</style>
</head>
<body>
<ul>
<li>Aktuelles</li>
<li>Philosophie</li>
<li>Besonderheiten</li>
<li>Partner</li>
<li>Kontakt</li>
</ul>
</body>
</html>