On Thu, 13 Aug 2009 12:49:07 +0000, freemont
<> wrote:
>On Thu, 13 Aug 2009 14:24:25 +0200, noauth writ:
>
>> If I am writing a long article and want to have a page length of only a
>> little past a screen resolution of 1024x768, do I have to break the text
>> manually, and then manually start a new page? I'm speaking of simple
>> HTML coding, nothing fancy. I'm having enough problems with
>> not-so-fancy.
)
>
>Sure, just break it into separate pages. You really only have to make one
>page at first, then cut-n-paste the sections into the bodies of the other
>pages. Link to the pages from each other.
>
><h1>First Page</h1>
><p>...........</p>
><p>...........</p>
><p>...........</p>
><p style="text-align:center;font-weight:bold"><a href="page2.htm">page 2</
>a><a href="page3.htm">page 3</a></p>
>
><h1>Second Page</h1>
><p>...........</p>
><p>...........</p>
><p>...........</p>
><p style="text-align:center;font-weight:bold"><a href="page1.htm">page 1</
>a><a href="page3.htm">page 3</a></p>
>
>And so on. You get the idea.
Thank you so much for taking the time to help an ignoramus.

)