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!
- . I want to create a completely new file where my menu links are located and try to find out a method to link them all the new sites i created. As same as the css file. Im creating a completely new css file and every site can access it with this code up there.
– Manh Khôi Duong Jul 27 '13 at 22:42