In the following thread [
webmasterworld.com...] (msg 4644863) I have something similar to the following:
- <header>
-- <p>Text here (Site title)</p>
-- <nav><ul><li>Link 1</li><li>Link 2</li><li>Link 3</li><li>Link 4</li></ul></nav>
-- <h1>Text here</h1>
-- <p>Few words to describe what body text is about</p>
- </header>
Would I be able to do the following instead:
- <header>
-- <p>Text here (Site title)</p>
-- <nav><ul><li>Link 1</li><li>Link 2</li><li>Link 3</li><li>Link 4</li></ul></nav>
- </header>
- <header>
-- <h1>Text here</h1>
-- <p>Few words to describe what body text is about</p>
- </header>
- <p>Couple of sentences here</p>
- <p>Couple of sentences here</p>
The content within the first <header> would be sitewide and the content within the second <header> would be page-specific.
The <p>Couple of sentences here</p> is the body text and would be unique to each page.
I appreciate your help.