mscir said:
Chuck wrote:
Post a couple example paragraphs. Are you separating your paragraphs
with carriage returns and spaces in Notepad and expecting to see the
same paragraphs in HTML? If so, you need to read up on <br> and <p>, try
this approach with your paragraphs:
some line text..................<br>
some line text..................<br>
some line text..................
<p>some line text-------------------
<p>some line text-------------------
http://www.htmlcodetutorial.com/linepar/_BR.html
http://www.helpwithpcs.com/courses/html/html_tags_dividers.htm
http://www.w3.org/TR/REC-html40/struct/text.html
No... no... I'm not talking the end result in HTML. That all looks fine
using the <br> and <p> tags...
It is the actual file itself.
Here is an example:
<h1>Richland High School Alumni<br>Class of 1968</h1><center><img alt="Rebel
Flag" src="sgborder.gif" height="46" width="668" id="border"></center><p
class="class1"><br><br><br><a href="#callahan">Cathy (Callahan) Thon
</a><br><br><a href="#duer">Patti (Duer) Hightower</a><br><br><a
href="#mcclendon">Tim McClendon</a><br><br><a href="#mceachern">Eric
McEachern</a><br><br><a href="#miller">Lynn Miller</a><br><br><a
href="#moore">Jimmy D. Moore</a><br><br><a href="#pillow">Charles
Pillow</a><br><br><a href="#wennerstrom">Donna (Wennerstrom)
Rubin</a><br><br><a href="#williams">Liza (Williams) McClendon</a><br><br><a
href="#wimmer">Greg Wimmer</a><br><br> <br><br><br><br><a
name="callahan"><center><img alt="Rebel Flag" src="sgborder.gif" height="46"
width="668" id="border"></center><br><br><p class="class5">Name:</p><p
class="class3">Cathy (Callahan) Thon</p><p class="class5">E-Mail:</P><p
class="class3">Need Current E-mail Address</P><p class="class5">City,
State:</P><p class="class3">Alexandria, VA</P><p
class="class5">Comments/Memories:</p><p class="class3">Working in DC for the
FAA as a contractor. <br><br>Greatest time and memories in one's life is
during high school. Reunions are great and enjoy visiting with old
classmates. </p><br><br><a name="duer"><center><img alt="Rebel Flag"
src="sgborder.gif" height="46" width="668" id="border"></center>
Because I have to edit these pages fairly often, I would like it to look
more like this when I open notepad to make my changes:
<h1>Richland High School Alumni
<br>
Class of 1968</h1>
<center>
<img alt="Rebel Flag" src="sgborder.gif" height="46" width="668"
id="border">
</center>
<p class="class1">
<br><br><br>
<a href="#callahan">Cathy (Callahan) Thon </a>
<br><br>
<a href="#duer">Patti (Duer) Hightower</a>
<br><br>
<a href="#mcclendon">Tim McClendon</a>
<br><br>
<a href="#mceachern">Eric McEachern</a>
<br><br>
<a href="#miller">Lynn Miller</a>
<br><br>
<a href="#moore">Jimmy D. Moore</a>
<br><br>
<a href="#pillow">Charles Pillow</a>
<br><br>
<a href="#wennerstrom">Donna (Wennerstrom) Rubin</a>
<br><br>
<a href="#williams">Liza (Williams) McClendon</a>
<br><br>
<a href="#wimmer">Greg Wimmer</a>
<br><br><br><br><br><br>
<a name="callahan">
<center>
<img alt="Rebel Flag" src="sgborder.gif" height="46" width="668"
id="border">
</center>
<br><br>
<p class="class5">Name:</p>
<p class="class3">Cathy (Callahan) Thon</p>
<p class="class5">E-Mail:</p>
<p class="class3">Need Current E-mail Address</p>
<p class="class5">City, State:</P>
<p class="class3">Alexandria, VA</p>
<p class="class5">Comments/Memories:</p><p class="class3">Working in DC for
the FAA as a contractor.
<br><br>
Greatest time and memories in one's life is during high school. Reunions are
great and enjoy visiting with old classmates.</p>
<br><br>
<a name="duer">
<center>
<img alt="Rebel Flag" src="sgborder.gif" height="46" width="668"
id="border">
</center>
Thanks...
Chuck