Working with Paragraphs - Example 2

 

Introduction

This webpage displays two tables - both tables look similar, but the HTML code behind each is vastly different. (You may need to resize the page to display it carefully.) Note also that this page does link to an external style sheet. Notice how the content in the second paragraph has remained unaffected by the style sheet. To change the apperance of your website using non paragraph based coding techniques would require many hours of work. However, if paragraphs are used, it's as simple as changing a style sheet.

Click here to view the same page without using an external style sheet.

Using Paragraphs to Organize Content.

<H2>Old Time Declensions.</H2> (Paragraph Block)

  <H3>Second Person Singular</H3> (Paragraph Block)

  <P> (Paragraph Block for Table)

  {Table Content}

  </P>

  <H3>Second Person Plural</H3> (Paragraph Block)

  <P> (Paragraph Block for Table)

  {Table Content}

 

Old Time Declensions.

Second Person Singular

Nominative

Thou

Accusative

Thee

Possessive

Thy

Predicate Possessive

Thine

Second Person Plural

Nominative

Ye

Accusative

You

Possessive

Your

Predicate Possessive

Yours

Not Using Paragraphs to Organize Content.

<FONT SIZE="5"><B>Old Time Declensions.</B></FONT><BR>

<FONT SIZE="5"><B></B></FONT><BR>

<B><FONT SIZE="4">Second Person Singular</FONT></B><BR>

<B><FONT SIZE="4"></FONT></B><BR>

{Table Content}

<B><FONT SIZE="4"></FONT></B><BR>

<B><FONT SIZE="4">Second Person Plural</FONT></B><BR>

<B><FONT SIZE="4"></FONT></B><BR>

{Table Content}

Old Time Declensions.

Second Person Singular

Nominative

Thou

Accusative

Thee

Possessive

Thy

Predicate Possessive

Thine


Second Person Plural

Nominative

Ye

Accusative

You

Possessive

Your

Predicate Possessive

Yours