Chapter 3 : Using the Internet (selected notes)

Origins

Growth

Internet and Web are not the same thing!

Communication Services

Web Browsers

"Annoyances" (textbook description)

Searching for Information on the Web

Evaluating Search Results (from textbook)

How the Internet Works, Briefly

Getting Access to the Internet

Internet Service Providers (ISP)

Wired Connections to Network

(Mbps means mega-bits per second, where a megabit is 1,000,000 bits)
(download means from ISP to you, upload means from you to ISP)

Dialup Modem:

ADSL  (a.k.a. DSL) Asymmetric Digital Subscriber Line Cable modem: LAN direct connection

Wireless Connections to Network

Satellite

Cell wireless (3G)

Wi-Fi (802.11)

What a Web Page received by the browser really looks like

Web pages are plain text files formatted using a markup language called HTML Here is an example HTML program inside the box. To see how the browser displays it, click here

<html>

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

  <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>

The body of the above page is everything between the <body> tag and the </body> tag. The browser will display the body like this (only without the red border):
What you type in HTML will be rendered by the browser
  • most tags are used as bookends like begin and end
  • other tags have only a beginning with implicit end
  • a few tags can be used either with or without an end
nameage
Lauren27
Charles18

Otterbein Home Page


Static web pages are very boring! Web content is very dynamic! There are a number of tools and techniques for generating HTML dynamically, but they are beyond the scope of this course!