<!-- big and small tag examples -->
<!-- Darren Grant, 7th October 1997 -->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">

<html>

<head>
  <title>Demonstration of big and small</title>
</head>

<body>

<p align="center">
  <big>W</big>elcome to the       <!-- note the calculated use of newlines to both -->
  <big>L</big>-<big>S</big>tar    <!-- aid the presentation and insert spaces -->
  <big>T</big>echnologies
  <big>H</big>omepage
</p>                              <!-- p not needed, but here for neatness' sake --> 

<br>                              <!-- line breaks -->
<br>

<p align="center">
  <small>This text starts off small</small>
  and progresses to normal
  <big>and bigger
    <big>and bigger
      <big>and bigger still
        <big>until it is
          <big>HUGE!</big>        <!-- not any bigger this time in Freso -->
        </big>
      </big>
    </big>
  </big>
</p>

</body>

</html>
