SlideShare a Scribd company logo
Keith B. Manatad August 18, 2014
Lesson Plan in Technology and Livelihood Education
HTML – Web Design
I. Objectives: In the end of the lesson the students would be able to;
 Identify HTML Texts Formatting Tags
 Apply HTML Texts Formatting Tags
 Design a Portfolio/Resume.
II. Subject Matter
Topic : HTML TEXT FORMATTING
Reference: HTML Fext
Formatting<http://www.tutorialspoint.com/html/index.htm>Accessed 2014
Materials: projector, laptop, power point presentation, notepad++
III. Procedures
1. Awareness
 Motivation
The Student will be presented a 6 minutes movie clip entitled;” Why our kids must
learn to code “The purpose is to catch up attention with the class and to motivate and guide
the student’s skill in coding with the successful developers like facebook himself Mark
Zuckerberg and Mircrosoft; Bill Gates and etc.
 Activity
The Students will Design a paragraph in a one whole sheet of paper and identify the
recently learned html tags of students then interpret into codes.
 Analysis
The Student will be ask if they have understand the HTML Text Formatting Tags like where to
insert a text of <u>…</u> and what is the name of Element and its use.
 Presentation
The Students will be presented with actual HTML Text Formatting element Tags in the laptop
with projector. Using Notepad++ with the correct syntax of each html element tags.
Here are HTML ELEMENTS could format a text.
1. Bold Text
Anything that appears within <b>...</b> element, is displayed in bold as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Bold Text Example</title>
</head>
<body>
<p>The following word uses a <b>bold</b> typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a bold typeface.
1. Italic Text
Anything that appears within <i>...</i> element is displayed in italicized as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Italic Text Example</title>
</head>
<body>
<p>The following word uses a <i>italicized</i> typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a italicized typeface.
2. Underlined Text
Anything that appears within <u>...</u> element, is displayed with underline as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Underlined Text Example</title>
</head>
<body>
<p>The following word uses a <u>underlined</u> typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a underlined typeface.
4.Strike Text
Anything that appears within <strike>...</strike> element is displayed with strikethrough, which is a thin line
through the text as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Strike Text Example</title>
</head>
<body>
<p>The following word uses a <strike>strikethrough</strike> typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a strikethrough typeface.
5.MonospacedFont
The content of a <tt>...</tt> element is written in monospaced font. Most of the fonts are known as variable-
width fonts because different letters are of different widths (for example, the letter 'm' is wider than the letter
'i'). In a monospaced font, however, each letter has the same width.
Example
<!DOCTYPE html>
<html>
<head>
<title>Monospaced Font Example</title>
</head>
<body>
<p>The following word uses a <tt>monospaced</tt> typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a monospaced typeface.
6.SuperscriptText
The content of a <sup>...</sup> element is written in superscript; the font size used is the same size as the
characters surrounding it but is displayed half a character's height above the othercharacters.
Example
<!DOCTYPE html>
<html>
<head>
<title>Superscript Text Example</title>
</head>
<body>
<p>The following word uses a <sup>superscript</sup>typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a superscript typeface.
7.SubscriptText
The content of a <sub>...</sub> element is written in subscript; the font size used is the same as the characters
surrounding it, but is displayed half a character's height beneath the other characters.
Example
<!DOCTYPE html>
<html>
<head>
<title>Subscript Text Example</title>
</head>
<body>
<p>The following word uses a <sub>subscript</sub>typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a subscript typeface.
8.InsertedText
Anything that appears within <ins>...</ins> element is displayed as inserted text.
Example
<!DOCTYPE html>
<html>
<head>
<title>Inserted Text Example</title>
</head>
<body>
<p>I want to drink <del>cola</del> <ins>wine</ins></p>
</body>
</html>
This will produce following result:
I want to drink wine
9.Deleted Text
Anything that appears within <del>...</del> element, is displayed as deleted text.
Example
<!DOCTYPE html>
<html>
<head>
<title>Deleted Text Example</title>
</head>
<body>
<p>I want to drink <del>cola</del> <ins>wine</ins></p>
</body>
</html>
This will produce following result:
I want to drink wine
10. Larger Text
The content of the <big>...</big> element is displayed one font size larger than the rest of the text surrounding
it as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Larger Text Example</title>
</head>
<body>
<p>The following word uses a <big>big</big> typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a big typeface.
11. Smaller Text
The content of the <small>...</small> element is displayed one font size smaller than the rest of the text
surrounding it as shown below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Smaller Text Example</title>
</head>
<body>
<p>The following word uses a <small>small</small> typeface.</p>
</body>
</html>
This will produce following result:
The following word uses a small typeface.
12 -15. Grouping Content
The <div> and <span> elements allow you to group together several elements to create sections or subsections
of a page.
For example, you might want to put all of the footnotes on a page within a <div> element to indicate that all of
the elements within that <div> element relate to the footnotes. You might then attach a style to this <div>
element so that they appear using a special set of style rules.
Example
<!DOCTYPE html>
<html>
<head>
<title>Div Tag Example</title>
</head>
<body>
<div id="menu" align="middle" >
<a href="/index.htm">HOME</a> |
<a href="/about/contact_us.htm">CONTACT</a> |
<a href="/about/index.htm">ABOUT</a>
</div>
<div id="content" align="left" bgcolor="white">
<h5>Content Articles</h5>
<p>Actual content goes here.....</p>
</div>
</body>
</html>
This will produce following result:
HOME | CONTACT | ABOUT
CONTENT ARTICLES
Actual content goes here.....
The <span> element, on the other hand, can be used to group inline elements only. So, if you have a part of a
sentence or paragraph which you want to group together,you could use the <span>element as follows
Example
<!DOCTYPE html>
<html>
<head>
<title>Span Tag Example</title>
</head>
<body>
<p>This is the example of <span style="color:green">span tag</span>and the <span style="color:red">div
tag</span>alongwith CSS</p>
</body>
</html>
This will produce following result:
This is the example of span tag and the div tag along with. These tags are commonly used with CSS to allow
you to attach a style to a section of a page.
Source: www.tutorialspoint.com/html
IV. Applcation
Student will apply htmlText Formatting Element by designing a Profile/Resume.
V. Assessment
The student will write HTML ELEMENT within 10 minutes to assess the learning of the
student.
VI. Assignment
The class will be group randomly and be given an assignment according for the topic
to be presented and discuss by the group next HTML topic.

More Related Content

PPTX
Empowerment Technology Lesson 1
PPT
Intellectual Property, Copyright and Fair Use
DOCX
Lesson plan: HTML Formatting Texts and Paragraphs
PPTX
Collaborative ICT Development - Empowerment Technologies
DOCX
Dll empowerment technologies
PPTX
Nine elements of digital citizenship
PPTX
Media Habits lifestyles and Preferences G12.pptx
PPTX
Interactive media
Empowerment Technology Lesson 1
Intellectual Property, Copyright and Fair Use
Lesson plan: HTML Formatting Texts and Paragraphs
Collaborative ICT Development - Empowerment Technologies
Dll empowerment technologies
Nine elements of digital citizenship
Media Habits lifestyles and Preferences G12.pptx
Interactive media

What's hot (20)

DOCX
Semi Detailed Lesson Plan in Programming Languages
PDF
K-to-12-MELCS-with-CG-Codes-Applied-Subjects.pdf
PDF
Lesson plan in intertext
PPTX
Empowerment Technology Lesson 5
PPTX
16 manipulative information and media.pptx
PDF
Lesson 2 English for Academic and Professional Purposes
PPTX
MEDIA AND INFORMATION LITERACY Week 7 F2F.pptx
PDF
CREATIVE TECHNOLOGY 7 QI-L3
PDF
Empowerment Technologies - Module 6
PDF
ICT introduction
PPTX
Basic principles of graphics and layout
DOCX
Media and Information Literacy (MIL) Performance Task - Video Project (Cooper...
PDF
Lp in ict
PDF
Empowerment Technologies - Module 2
PDF
Reading-and-Writing-week-1-module-1 (1).pdf
PDF
Curriculum Guide ICT Grade 7-10.pdf
PPTX
[EMPOWERMENT TECHNOLOGIES] - INTERNET THREATS
PPTX
MEDIA-INFORMATION-LITERACY-G12-NAT-REVIEWER.pptx
PDF
Empowerment Technologies - Introduction and the Nature of ICT
PDF
EAPP Quarter 1 – Module 7 Writing Concept Paper.pdf
Semi Detailed Lesson Plan in Programming Languages
K-to-12-MELCS-with-CG-Codes-Applied-Subjects.pdf
Lesson plan in intertext
Empowerment Technology Lesson 5
16 manipulative information and media.pptx
Lesson 2 English for Academic and Professional Purposes
MEDIA AND INFORMATION LITERACY Week 7 F2F.pptx
CREATIVE TECHNOLOGY 7 QI-L3
Empowerment Technologies - Module 6
ICT introduction
Basic principles of graphics and layout
Media and Information Literacy (MIL) Performance Task - Video Project (Cooper...
Lp in ict
Empowerment Technologies - Module 2
Reading-and-Writing-week-1-module-1 (1).pdf
Curriculum Guide ICT Grade 7-10.pdf
[EMPOWERMENT TECHNOLOGIES] - INTERNET THREATS
MEDIA-INFORMATION-LITERACY-G12-NAT-REVIEWER.pptx
Empowerment Technologies - Introduction and the Nature of ICT
EAPP Quarter 1 – Module 7 Writing Concept Paper.pdf
Ad

Similar to Lesson plan htmltextformattingtag (20)

PPTX
SDP_HTML.pptx
PPTX
IT Unit III.pptx
PPTX
Hyper text markup Language
PPTX
TagsL1.pptx
PPTX
Html basics-auro skills
PPTX
Internet Technology UNIT 2 FINAL NOTES.pptx
PPTX
Web Design Lecture2.pptx
PPTX
Unit 2 Internet and web technology CSS report
PDF
Introduction to Html by Ankitkumar Singh
DOCX
PPT
html
PPTX
HTML Text formatting tags
PDF
PPT
Deepshikha html
PDF
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
PPTX
PPTX
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
SDP_HTML.pptx
IT Unit III.pptx
Hyper text markup Language
TagsL1.pptx
Html basics-auro skills
Internet Technology UNIT 2 FINAL NOTES.pptx
Web Design Lecture2.pptx
Unit 2 Internet and web technology CSS report
Introduction to Html by Ankitkumar Singh
html
HTML Text formatting tags
Deepshikha html
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
Ad

More from Keith Borgonia Manatad (20)

DOCX
Evaluation form
DOC
Leasson plan in TLE manicure
DOCX
Nail care lesson plan asessssment
DOCX
Leson plan in tle nailcare plain manicure
PPTX
Nail care manicuredesign
PPTX
Waste management
DOCX
Tle tailoring 1
DOCX
Tle commercial cooking 2
DOCX
TLE commercial cooking 1
DOC
DOCX
Edge cutting tools
DOC
Lesson plan in carpentry tools
DOCX
Carpentry hand tools
DOCX
Parts of high speed sewing machine
DOCX
Parts of sewing
DOC
TLE obtain measurement
DOCX
Sewing tools measuring devices
PDF
para himo bado TLE
DOC
Lesson plan 3
PPSX
Over view of html
Evaluation form
Leasson plan in TLE manicure
Nail care lesson plan asessssment
Leson plan in tle nailcare plain manicure
Nail care manicuredesign
Waste management
Tle tailoring 1
Tle commercial cooking 2
TLE commercial cooking 1
Edge cutting tools
Lesson plan in carpentry tools
Carpentry hand tools
Parts of high speed sewing machine
Parts of sewing
TLE obtain measurement
Sewing tools measuring devices
para himo bado TLE
Lesson plan 3
Over view of html

Recently uploaded (20)

PDF
VCE English Exam - Section C Student Revision Booklet
PDF
01-Introduction-to-Information-Management.pdf
PDF
Pre independence Education in Inndia.pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
Lesson notes of climatology university.
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
Institutional Correction lecture only . . .
PDF
Computing-Curriculum for Schools in Ghana
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
master seminar digital applications in india
PPTX
Cell Types and Its function , kingdom of life
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
Cell Structure & Organelles in detailed.
VCE English Exam - Section C Student Revision Booklet
01-Introduction-to-Information-Management.pdf
Pre independence Education in Inndia.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Lesson notes of climatology university.
O5-L3 Freight Transport Ops (International) V1.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
2.FourierTransform-ShortQuestionswithAnswers.pdf
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Institutional Correction lecture only . . .
Computing-Curriculum for Schools in Ghana
STATICS OF THE RIGID BODIES Hibbelers.pdf
102 student loan defaulters named and shamed – Is someone you know on the list?
master seminar digital applications in india
Cell Types and Its function , kingdom of life
Anesthesia in Laparoscopic Surgery in India
TR - Agricultural Crops Production NC III.pdf
Cell Structure & Organelles in detailed.

Lesson plan htmltextformattingtag

  • 1. Keith B. Manatad August 18, 2014 Lesson Plan in Technology and Livelihood Education HTML – Web Design I. Objectives: In the end of the lesson the students would be able to;  Identify HTML Texts Formatting Tags  Apply HTML Texts Formatting Tags  Design a Portfolio/Resume. II. Subject Matter Topic : HTML TEXT FORMATTING Reference: HTML Fext Formatting<http://www.tutorialspoint.com/html/index.htm>Accessed 2014 Materials: projector, laptop, power point presentation, notepad++ III. Procedures 1. Awareness  Motivation The Student will be presented a 6 minutes movie clip entitled;” Why our kids must learn to code “The purpose is to catch up attention with the class and to motivate and guide the student’s skill in coding with the successful developers like facebook himself Mark Zuckerberg and Mircrosoft; Bill Gates and etc.  Activity The Students will Design a paragraph in a one whole sheet of paper and identify the recently learned html tags of students then interpret into codes.  Analysis The Student will be ask if they have understand the HTML Text Formatting Tags like where to insert a text of <u>…</u> and what is the name of Element and its use.  Presentation The Students will be presented with actual HTML Text Formatting element Tags in the laptop with projector. Using Notepad++ with the correct syntax of each html element tags. Here are HTML ELEMENTS could format a text. 1. Bold Text Anything that appears within <b>...</b> element, is displayed in bold as shown below: Example <!DOCTYPE html> <html> <head> <title>Bold Text Example</title> </head> <body> <p>The following word uses a <b>bold</b> typeface.</p> </body> </html>
  • 2. This will produce following result: The following word uses a bold typeface. 1. Italic Text Anything that appears within <i>...</i> element is displayed in italicized as shown below: Example <!DOCTYPE html> <html> <head> <title>Italic Text Example</title> </head> <body> <p>The following word uses a <i>italicized</i> typeface.</p> </body> </html> This will produce following result: The following word uses a italicized typeface. 2. Underlined Text Anything that appears within <u>...</u> element, is displayed with underline as shown below: Example <!DOCTYPE html> <html> <head> <title>Underlined Text Example</title> </head> <body> <p>The following word uses a <u>underlined</u> typeface.</p> </body> </html> This will produce following result:
  • 3. The following word uses a underlined typeface. 4.Strike Text Anything that appears within <strike>...</strike> element is displayed with strikethrough, which is a thin line through the text as shown below: Example <!DOCTYPE html> <html> <head> <title>Strike Text Example</title> </head> <body> <p>The following word uses a <strike>strikethrough</strike> typeface.</p> </body> </html> This will produce following result: The following word uses a strikethrough typeface. 5.MonospacedFont The content of a <tt>...</tt> element is written in monospaced font. Most of the fonts are known as variable- width fonts because different letters are of different widths (for example, the letter 'm' is wider than the letter 'i'). In a monospaced font, however, each letter has the same width. Example <!DOCTYPE html> <html> <head> <title>Monospaced Font Example</title> </head> <body> <p>The following word uses a <tt>monospaced</tt> typeface.</p> </body> </html>
  • 4. This will produce following result: The following word uses a monospaced typeface. 6.SuperscriptText The content of a <sup>...</sup> element is written in superscript; the font size used is the same size as the characters surrounding it but is displayed half a character's height above the othercharacters. Example <!DOCTYPE html> <html> <head> <title>Superscript Text Example</title> </head> <body> <p>The following word uses a <sup>superscript</sup>typeface.</p> </body> </html> This will produce following result: The following word uses a superscript typeface. 7.SubscriptText The content of a <sub>...</sub> element is written in subscript; the font size used is the same as the characters surrounding it, but is displayed half a character's height beneath the other characters. Example <!DOCTYPE html> <html> <head> <title>Subscript Text Example</title> </head> <body> <p>The following word uses a <sub>subscript</sub>typeface.</p> </body> </html> This will produce following result: The following word uses a subscript typeface.
  • 5. 8.InsertedText Anything that appears within <ins>...</ins> element is displayed as inserted text. Example <!DOCTYPE html> <html> <head> <title>Inserted Text Example</title> </head> <body> <p>I want to drink <del>cola</del> <ins>wine</ins></p> </body> </html> This will produce following result: I want to drink wine 9.Deleted Text Anything that appears within <del>...</del> element, is displayed as deleted text. Example <!DOCTYPE html> <html> <head> <title>Deleted Text Example</title> </head> <body> <p>I want to drink <del>cola</del> <ins>wine</ins></p> </body> </html> This will produce following result: I want to drink wine 10. Larger Text The content of the <big>...</big> element is displayed one font size larger than the rest of the text surrounding it as shown below:
  • 6. Example <!DOCTYPE html> <html> <head> <title>Larger Text Example</title> </head> <body> <p>The following word uses a <big>big</big> typeface.</p> </body> </html> This will produce following result: The following word uses a big typeface. 11. Smaller Text The content of the <small>...</small> element is displayed one font size smaller than the rest of the text surrounding it as shown below: Example <!DOCTYPE html> <html> <head> <title>Smaller Text Example</title> </head> <body> <p>The following word uses a <small>small</small> typeface.</p> </body> </html> This will produce following result: The following word uses a small typeface. 12 -15. Grouping Content The <div> and <span> elements allow you to group together several elements to create sections or subsections of a page.
  • 7. For example, you might want to put all of the footnotes on a page within a <div> element to indicate that all of the elements within that <div> element relate to the footnotes. You might then attach a style to this <div> element so that they appear using a special set of style rules. Example <!DOCTYPE html> <html> <head> <title>Div Tag Example</title> </head> <body> <div id="menu" align="middle" > <a href="/index.htm">HOME</a> | <a href="/about/contact_us.htm">CONTACT</a> | <a href="/about/index.htm">ABOUT</a> </div> <div id="content" align="left" bgcolor="white"> <h5>Content Articles</h5> <p>Actual content goes here.....</p> </div> </body> </html> This will produce following result: HOME | CONTACT | ABOUT CONTENT ARTICLES Actual content goes here..... The <span> element, on the other hand, can be used to group inline elements only. So, if you have a part of a sentence or paragraph which you want to group together,you could use the <span>element as follows
  • 8. Example <!DOCTYPE html> <html> <head> <title>Span Tag Example</title> </head> <body> <p>This is the example of <span style="color:green">span tag</span>and the <span style="color:red">div tag</span>alongwith CSS</p> </body> </html> This will produce following result: This is the example of span tag and the div tag along with. These tags are commonly used with CSS to allow you to attach a style to a section of a page. Source: www.tutorialspoint.com/html IV. Applcation Student will apply htmlText Formatting Element by designing a Profile/Resume. V. Assessment The student will write HTML ELEMENT within 10 minutes to assess the learning of the student. VI. Assignment The class will be group randomly and be given an assignment according for the topic to be presented and discuss by the group next HTML topic.