Wednesday, June 07, 2006

Basic study with html

Do You Want to Try It?

If you are running Windows, start Notepad.

If you are on a Mac start SimpleText.

In OSX start TextEdit and change the following preferences: Select (in the preferences window) "Plain text" instead of "Rich text" and then select "Ignore rich text commands in HTML files". This is very important because if you don't do this HTML codes probably won't work.

Type in the following text:



< html >
< head >
< title >Title of page< /title >
< /head >
< body >
This is my first homepage. < b >This text is bold< /b >
< /body >
< /html >

Title of page

Title Save the file as "mypage.htm".

Start your Internet browser. Select "Open" (or "Open Page") in the File menu of your browser. A dialog box will appear. Select "Browse" (or "Choose File") and locate the HTML file you just created - "mypage.htm" - select it and click "Open". Now you should see an address in the dialog box, for example "C:\MyDocuments\mypage.htm". Click OK, and the browser will display the page.

Example Explained

The first tag in your HTML document is . This tag tells your browser that this is the start of an HTML document. The last tag in your document is . This tag tells your browser that this is the end of the HTML document.

The text between the tag and the tag is header information. Header information is not displayed in the browser window.

tags is the title of your document. The title is displayed in your browser's caption.The text between the

The text between the tags is the text that will be displayed in your browser.

The text between the and tags will be displayed in a bold font.

0 Comments:

Post a Comment

<< Home