You are on page 1of 9

HTML

Hypertext Markup Language


HTML-Introduction

LEARNING OBJECTIVE

• To define HTML and common terminology related to HTML.


• To recognize correct HTML tags and syntax.
• Be able to write hello world, error-free HTML code.

SUCCESS CRITERIA
• I can define HTML and common terminology related to HTML.
• I can recognize syntax and able to write hello world, error-free
HTML code.
HTML-Introduction

STARTER: (5mins)

Read the content available in the link below to discuss:

Https://study.Com/academy/lesson/hypertext-markup-language-html-
definition-history-quiz.Html#/lesson
HTML-HTML-Introduction
DISCUSSION:
❖ How can you explain HTML and why is it important?

❖ Why do you think it is important to pay close


attention to formatting when dealing with HTML
code?

❖ What are tags?

❖ What happens if you don't use a closing bracket in


your code? Can you think of a reason this could cause
problems in how your web site looks?
HTML-HTML-Introduction

Let’s Code HTML:

Follow the Steps:

1. open Notepad

2. Write code as shown:


3. Now to save→ file→ save
as→filename.html
HTML-Introduction
EXPLANATION OF DOCUMENT STRUCTURE

Each HTML document has a minimum number of tags. Here is the very least HTML code that
can be called a "page":
<HTML>

<HEAD>
<TITLE>This is my page Title!</TITLE>
</HEAD>

<BODY>

This is my message to the world!

</BODY>

</HTML>

NOTE: HTML is not case sensitive. <title> is equivalent to <TITLE> or <TiTlE>.


HTML-Introduction

PLENARY:

1) HTML stands for?


2) Why do we need to use tags in HTML?
3) Explain markup.
4) Explain hypertext.
HTML-Introduction

HOME LEARNING:

Research work:

Why is it important to learn HTML for students as beginner


programmers?

o Research question should appear in as a heading use heading size 4.


o You will write your answer in as a paragraph using tag <p></p>using the
HTML code.

You might also like