I got a problem that I want to solve. I created a style.css, index.html, and cmenu.css (cmenu for coolmenu) file. In my cmenu.css I describe how my coolmenu looks like.
Here is my site: http://pjgini.funpic.de/. My menu links are located in index.html. By creating a new site I must copy the same links in the new site. I dont want to copy and paste all the links stuff in each of my sites.
This are my menu links in my index.html file:
<div id="klappmenu">
<ul id="liste">
<li><a href="#">Kategorie 1</a>
<ul>
<li><a href="/Seite.htm">Unterseite 1.1</a></li>
<li><a href="/Seite.htm">Unterseite 1.2</a></li>
<li><a href="/Seite.htm">Unterseite 1.3</a></li>
</ul>
</li>
...
</div>
Now I want to include them in any html document!