HTML - 'Persistance Navbar'? -


i wondering if possible following in html.

index.html:

<title>awesome website</title> <link href="navbar.html" rel="i-dunno-what-to-put-here" type="text/html"/> <p>content</p> 

navbar.html:

<div id="navbar">     <li><a href="1.html">1</a></li>     <li><a href="2.html">2</a></li>     <li><a href="3.html">3</a></li>     <li><a href="4.html">4</a></li> </div> 

so pretty - pages link navbar.html , if there 1 change in navbar, all pages change.

does know if possible / how it? appreciated.

i used php include jees mentioned.


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -