Intro to HTML - 0023

Menu Back Next
HTML Tags! - Text Control

Simple HTML Document

The Hartford Area SAS User Groups

And the HTML code needed to do this:

<center><H1>The <i>Hartford</i> AREA <font color=BLUE>SAS</font> User Groups</H1></center>

So, you can place TAGS within TAGS!!!
Just remember the FULE / LUFE rule - First Used Last Ended / Last Used First Ended!

<center>
  <H1>
    The 
      <i>
        Hartford
      </i>
        AREA 
          <font color=BLUE>
          SAS
          </font>
        User Groups
   </H1>
</center>

Just like Nested Do's and End's