C SC 100 Lecture Notes
Spring 2008
Pete Sanderson

[ previous | schedule | next ]

major resource: Tomorrow's Technology and You (Complete), Eighth Edition, Beekman and Quinn, Pearson Prentice Hall, 2008

Chapter 9, The Evolving Internet (part 2)

Programming the Web

Most static web pages are formatted using HTML Here is an example HTML program. To see how the browser displays it, click here

<html>

  <title>This is my page!</title>

  <body>

    What you <b>type</b> in HTML will be rendered by
    the <i>browser</i>

    <ul>
       <li>most tags are used as bookends like begin and end</li>
       <li>other tags have only a beginning with implicit end</li>
       <li>a few tags can be used either with or without an end</li>
    </ul>

    <table border=1>
      <tr>
         <th>name</th><th>age</th>
      </tr>
      <tr>
         <td>Lauren</td><td>27</td>
      </tr>
      <tr>
         <td>Charles</td><td>18</td>
      </tr>
    </table>

    <img src="http://faculty.otterbein.edu/PSanderson/pete2004.jpg">

    <br>

    <a href="http://www.otterbein.edu">Otterbein Home Page</a>

    <br><br>

    <a href="http://www.evergreen.edu/biophysics/technotes/misc/bin_math.htm">
    <img SRC="images/binadddigits.jpg"></a>

    <hr>

  </body>

</html>
Compare the HTML code with the displayed page to see what the various tags do.

Static web pages are very boring! Web content is very dynamic!

Publishing on the Web

To publish material on the web, you need two things:

Tools come in many flavors

There are many ways to get server disk space

The HTTP protocol is stateless




[ Pete Sanderson | Math Sciences server | Math Sciences home page | Otterbein ]

Last updated:
Pete Sanderson (PSanderson@otterbein.edu)