Friday, May 27, 2011

HTML

Here are some html basics I would like to share. First of all, HTML stands for HyperText Markup Language, it is used to achieve font, color, graphic, and hyperlink effects on World Wide Web pages. Normally tags comes in pairs the opening  and closing tags. They are enclosed in angle brackets < > . This an example of  an opening tag <html> and closing tag </html> don't forget  to put a slash ( / ) inside the angle bracket right before the word "html".

Type this on notepad:

<html>
<head>
<title>Title of the document. It appears on the upper left corner of you browser</title>
</head>

<body>
The content of the document. You put your codes here and write documents.
</body>

</html>

In saving the file:

Click File => Save As => On the window that appears put the name of your file in Filename then put .html on the end of your file name like this "pinoypoy.html". => Go to Save as type choose All Files then Save.



Click Save As...
Put .html after your filename then choose All Files in Save as type.

 
Click the saved file and the result is like this.

HTML is supported in all major browsers.

No comments: