15
Getting Started with HTML Lesson 1 By: Hector Tejada

HTML Lesson 1

Embed Size (px)

Citation preview

Page 1: HTML Lesson 1

 Getting Started with HTML

Lesson 1

By: Hector Tejada

Page 2: HTML Lesson 1

Objectives:

• You will learn the basics the basics of html

htmlRequirements:

• Notepad

Page 3: HTML Lesson 1

First you will need to open up notepad you can do this by going to start->all programs->accessories->notepad

Step 1

Page 4: HTML Lesson 1

Step 2

Once you have notepad open click on format and then on word warp. This will make it easier on you.

Page 5: HTML Lesson 1

Step 3

Start typing in <html>.HTML stands for hyper text markup language. This is known as a tag <>. The html tag is essential. Then press enter Always press enter after you done with a line. It makes the coding neater and easier to find mistakes or areas you want to edit later.

Page 6: HTML Lesson 1

Step 4

Once you have done that type in the head tag. The head tag is <head>.

Page 7: HTML Lesson 1

Step 5

Next step is to type <title> “the name of your page"</title>. That is the title tag.The forward-slash is important because it states the end of the tag

Page 8: HTML Lesson 1

Step 6

Alright next you type </head>. It is important to make sure you put this after the title tag

Page 9: HTML Lesson 1

Step 7

Next is the body tag. This is the body tag <body>. The body tag is where you type in the things you want on your website.

Page 10: HTML Lesson 1

Step 8

If you want to make paragraphs. You will need to use the <p> tag.

Page 11: HTML Lesson 1

Step 9

After you have everything you want in the body you will need to use the end tag. The end consist of the regular tag with a slash. For example </body>

Page 12: HTML Lesson 1

Step 10

This is an important step. After you are done with the body you will need to end the html. To do this you will need to use the </html> tag.

Page 13: HTML Lesson 1

Step 9

After you have everything you want in the body you will need to use the end tag. The end consist of the regular tag with a slash. For example </body>

Page 14: HTML Lesson 1

Conclusion

You should be able to:

• Make a title• Make a body• Make paragraphs• Use tags properly• Know the difference between a end tag

and a regular tag

Page 15: HTML Lesson 1

Assessment

Now its time for a review. I want you to create a basic website using what you have learn.

Requirements: Must be a fully functions website Must have paragraphs