Reputation: 587
The navigation bar on this Site is not working properly. Clicking on "Leistungsspektrum" in the navigation bar says that The requested URL /leistunsspektrum.html was not found on this server. The site is named "leistungsspektrum.html" on the server.
HTML: link
CSS: link
Whats wrong?
Upvotes: 0
Views: 237
Reputation: 36784
You've missed a g
out in your link.
Instead of
<a href="http://dh-creative-webdesign.de/leistunsspektrum.html" title="" class="mn2 active"></a>
It should be
<a href="http://dh-creative-webdesign.de/leistungsspektrum.html" title="" class="mn2 active"></a>
As a sidenote: please include your code in your question! Links to external websites are useless to Stack Overflow if those websites disappear from the internet one day. Not only that but many people will take one look at a HTML/CSS-related question with no code and click straight back off it.
Include your code!
Upvotes: 2
Reputation: 7341
Update your URL to this, it just a small typo error:
http://dh-creative-webdesign.de/leistungsspektrum.html
Upvotes: 1
Reputation: 441
You have typed the url wrong. It should be "leistungsspektrum.html". Not "leistunsspektrum.html".
Hope it helps.
Kind regards, Bart Roelofs
Upvotes: 1