HTML Tutorial |
Lesson 1 | ||||
Home Introduction to HTML <html> to </html> <body> to </body> Formatting Links Backgrounds Tables Frames Other tags A little Style Resources |
• Tags covered in this lesson: • Explanation: • Working examples: Tags covered in this lesson: As opposed to XML, HTML does not describe text, it presents text in a readable format. In this lesson the tag being covered is <html> to </html>. HTML is that it is composed of "Tags". You want to embolden a heading you have a tag -- <b></b>, you want to underline a word you have a tag -- . This way the whole HTML world is made up of tags. Let's begin by building a page of our own: 1. Open a text editor like MS Notepad, etc (You can use WYSIWYG editors but they will not help you really learn HTML). 2. Now type the following: <html> <head> <title>This is my First html Page</title> </head> <body> </body> </html> Each HTML page has two main sections: a. Head b. Body.
Congratulations, you just wrote your First Page. Now, lets test it. How does it look? Of course, it will have nothing written on it. But in our next lesson we are going to write something and learn something more in the process! Woo!! • FirstPage.html |
Home | Introduction to HTML | <html> to </html> | <body> to </body> | Formatting | Links | Backgrounds
Tables | Frames | Other tags | A little Style | Resources |