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

 

Align Attribute

Many tags support ALIGN attributes... if you want something to be aligned from the left margin, from the center, or from the right margin. The ALIGN attribute is placed in the opening tag before the >.

<h2 align="left">Left Align.</h2>

Left Align.

<h2 align="center">Center Align.</h2>

Center Align.

<h2 align="right">Right Align.</h2>

Right Align.

**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><p>
    <font face="verdana">Here is verdana font.</font><p>
    <font size="+2" face="arial" color="purple">Big, purple, and arial font.</font><p>
    </body>

    </html>

To view this web page, click here.

<---Back to Text Color    On to Line Breaks--->