HTML

I. Basic Code

1.Commands are given in wakkas <command> and the end of the command is </command>.
2.Begin your HTML document with <html> and end it with </html>.
<html>
......content....
</html>
2.the second line of code below <html> is
<body bgcolor =... t ext = ... link =....> - this instructs the browser of the background color (default is white) or jpeg, the text color (default is black), and color of the link (default is blue).

II. Heading

1. Center and add a heading with the following code
<center><h1>
Heading Here
</h1></center>
Look at the various headings and basic code here. Heading can be H1, H2, H3, H4, ... etc. Try some of them.

III. Color

Whenever you want color, you can choose from a wide range of HTML colors. For example text = blue or text = #0000ff. Less common colors need a code. Find some colors here. Learn about colors here.

IV. Content

Just start typing your content between the <html> and /<html>
Single spacing gets a br at the end of the line <br>
Double spacing gets a p at the end of the line<p>

V. Viewing Your Page in a Browser.

1. Save your simple text document.
2. Open Explorer from Items for Students.
3. >File >Open. Find your file in the Mathography Folder.Double click the file.
Another option is to drag the mathography file onto the browers.

VI. Links for Code

1. What is HTML?
2.. Style Sheet.
3. Collection of HTML Writing Aids and Examples.
4. Some Tutorials.

VII. General Outline of Code

Items in italic are places to make choices.
Items in bold are code.
<html>
<body bgcolor = grey text = green link = pink>
<center> <h1> Mathography</h1></center>
<br>

Content - writings about me.
<p>
Content - a new paragraph.
</html>