ITS Home Tech Support Laptop Program E Learning Media Services Communications

Web Services Home

How to obtain Webspace

Course1

Desire2Learn

Web Accessibility Guidelines

WSU Web Policy

HTML Tutorial

FTP Tutorial

Student Webs

Student Clubs

Webmail

 

Text Formatting

If you had an entire web page without formatted text, it would look rather dull and boring. This is why we use text formatting tags.

Some common text formatting tags are <b> and </b> for bold, <i< and </i> for italics, <u> and </u> for underlined, and <tt> and </tt> for typewriter. The <font size=n> and </font> tags also come in handy.

**Putting together everything we have learned so far, you could produce an HTML document that looks like this:

    <html>

    <head>
    <title>My Web Page</title>
    </head>

    <body>
    <h2>My First Web Page</h2>
    <hr>
    <h4>Headings are fun!</h4>
    <font size="+3"><b>This is big and bold!</b></font><p>
    <font size="-1"><i>This is small and italic!</i></font>
    </body>

    </html>

To view this web page, click here.

<---Back to Paragraphs    On to Font Extensions--->