Computer Lesson 3 HTML Elements
Computer Lesson 3 HTML Elements
IN
COMPUTER
7 TO 10
Karol Paul D. Sotelo
Learning Objectives
At the end of the lesson, the students should be
able to:
• To create a simple web page using a text editor
• To identify major parts of a HTML document
• To be aware of the basic tags that I can use to
publish my HTML document
• To be able to launch the created HTML file to a
browser
REVIEW
What was our
lesson last time?
What is a
Tag?
What are
Empty Tags?
Give an example
of an Empty Tag
What are
Container Tags?
Give an example
of a Container Tag
MOTIVATION
Watch the video and jot
down important details:
https://www.youtube.com/
watch?v=salY_Sm6mv4
NEW WORDS
TO LEARN
/do-kyu-ment/
DOCUMENT
/is-tayl/
STYLE
/a-layn/
ALIGN
/e-di-tor/
EDITOR
SELECTION
HTML documents are composed of 3 important container
tags: HTML, HEAD, and BODY tags.
1.The HTML container tag indicates that the doument
should be interpreted as a HTML document
2.The HEAD container tags have the necessary
information regarding the HTML document: What is its
content about, keywords to access the page, comments
regarding the document, scripts, etc.
3.The BODY container tags have the elements to be
displayed in the browser.
PRESENTATION
What is our lesson
for today?
Our lesson for today is about,
HTML
ELEMENTS
Karol Paul D. Sotelo
DISCUSSION
What are the major parts
of a HTML document?
HTML
HEAD
BODY
BODY TAG
adds by default
<html>
<head>
<title> This is where my title is
</title>
</head>
<body>
This is where the body is.
</body>
</html>
03 SAVE THE FILE