Keith B. Manatad August 18, 2014
A lesson Plan in Technology and livelihood Education Industrial Arts
(Information and Communication Technology)
I. Objectives
In the end of the lesson the students would be able to;
1. Identify HTML Texts Formatting Tags
2. Apply HTML Texts Formatting Tags
3. Design a Portfolio.
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 developer 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.
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.
2.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.
3. 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. Monospaced Font
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. Superscript Text
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 other characters.
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. Subscript Text
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. Inserted Text
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 html Formatting Element by designing a Profile.
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 assign according for the topic to be
presented and discuss by the group.

Lesson plan: HTML Formatting Texts and Paragraphs

  • 1.
    Keith B. ManatadAugust 18, 2014 A lesson Plan in Technology and livelihood Education Industrial Arts (Information and Communication Technology) I. Objectives In the end of the lesson the students would be able to; 1. Identify HTML Texts Formatting Tags 2. Apply HTML Texts Formatting Tags 3. Design a Portfolio. 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 developer 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. 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>
  • 2.
    </html> This will producefollowing result: The following word uses a bold typeface. 2.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. 3. 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 worduses 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. Monospaced Font 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.
  • 4.
    6. Superscript Text Thecontent 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 other characters. 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. Subscript Text 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. Inserted Text Anythingthat 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
  • 6.
    The content ofthe <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
  • 7.
    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>
  • 8.
    <html> <head> <title>Span Tag Example</title> </head> <body> <p>Thisis 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 html Formatting Element by designing a Profile. 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 assign according for the topic to be presented and discuss by the group.