I decided to put my navigation section into another file and retrieve it via html includes, so it will be easier to service if changes need to be done , as the navigation section is shared amongst several sites.
My index site used to work well, but now that i'm using the include method the navigation doesnt show.
Where is the mistake ?
my index.html
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<meta http-equiv="Content-Type" content="text/html; charset="UTF-8">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="initial-scale=1">
</head>
<body>
<!--#include file="topnavibar.shtml" -->
<div class="maincontentHome">
<img id="Banner" src="Banner3.gif" alt="Banner" >
<div class="maincontentpic"></div>
<div class="clearer"></div>
</div>
and my topnavibar.shtml
<div class="topnavibar">
<div id="flags">
<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" onclick="goToAUT()" src="AT.png" height="20" width="20" alt="AUTFlag" />
<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" onclick="goToGB()" src="GB.png" height="20" width="20" alt="GBFlag" />
</div>
<div class="menubar1">
<a href="index.html">Home</a>
<a href="Unsere Philosophie.html">Unsere Philosophie</a>
<a href="Ueber uns.html">Über uns</a>
<a href="Portfolio.html">Portfolio</a>
<a href="Kontakt.html">Kontakt</a>
<a href="Partner Sites.html">Partner Sites</a>
</div>
</div>
Thx for any help !!!!!