Lesson 1: Required Tags


Return to preliminary information

Continue on with Lesson 2


Tags that MUST be included in every document that you make: <HTML>...</HTML> Tells the computer this is an HTML document. This is always the first and last tag. <HEAD>...</HEAD>Tells the computer that the information between the opening and closing tags is the introductory information. <TITLE>...</TITLE> Between these 2 tags place the name you want to appear in the box at the top of the window. Usually this is the title or subject of the document. <BODY>...</BODY> Everything in the main portion of the document. Assignment 1 Using notepad or some other word processor type in the following HTML document word for word. Then check it in a browser to see how it appears. <HTML> <HEAD><TITLE>This is first sample HTML document</TITLE></HEAD> <BODY> <P>Here you will learn to place all the pictures, links and text that you want to put up on your webpage. </BODY> </HTML> end of lesson