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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -