SlideShare a Scribd company logo
1 of 8
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

What's hot

Computer keyboard basics
Computer keyboard basicsComputer keyboard basics
Computer keyboard basicsLuisa Cotto
 
Parts of keyboard and proper handling
Parts of keyboard and proper handlingParts of keyboard and proper handling
Parts of keyboard and proper handlingAlvin Maderista
 
WWW and web browser
WWW and web browserWWW and web browser
WWW and web browserYansi Keim
 
Semi Detailed Lesson Plan in Programming Languages
Semi Detailed Lesson Plan in Programming LanguagesSemi Detailed Lesson Plan in Programming Languages
Semi Detailed Lesson Plan in Programming LanguagesManila Central University
 
Ict computer hardware servicing cg
Ict computer hardware servicing cgIct computer hardware servicing cg
Ict computer hardware servicing cgRey Santos
 
Computer Systems Servicing COC1-COC2
Computer Systems Servicing COC1-COC2Computer Systems Servicing COC1-COC2
Computer Systems Servicing COC1-COC2melody77776
 
CSS L07 - Preparing the Installer
CSS L07 - Preparing the InstallerCSS L07 - Preparing the Installer
CSS L07 - Preparing the InstallerMarvin Bronoso
 
Performing Computer Operations (PCO)
Performing Computer Operations (PCO)Performing Computer Operations (PCO)
Performing Computer Operations (PCO)Walden Macabuhay
 
K to 12 commercial cooking learning module
K to 12 commercial cooking learning moduleK to 12 commercial cooking learning module
K to 12 commercial cooking learning moduleDivine Grace Martinez
 
How to create a html webpage using notepad
How to create a html webpage using notepadHow to create a html webpage using notepad
How to create a html webpage using notepadSophieBarwick1999
 
K to 12 TLE Curriculum Guide for Computer Hardware Servicing
K to 12 TLE Curriculum Guide for Computer Hardware ServicingK to 12 TLE Curriculum Guide for Computer Hardware Servicing
K to 12 TLE Curriculum Guide for Computer Hardware ServicingDr. Joy Kenneth Sala Biasong
 
IP addressing Grade 10 TLE ICT
IP addressing Grade 10 TLE ICTIP addressing Grade 10 TLE ICT
IP addressing Grade 10 TLE ICTLeonel Rivas
 
Contextualized online-search-and-research-skills
Contextualized online-search-and-research-skillsContextualized online-search-and-research-skills
Contextualized online-search-and-research-skillsJohnBarsaga
 
How to clean and store cooking tools and equipment
How to clean and store cooking tools and equipmentHow to clean and store cooking tools and equipment
How to clean and store cooking tools and equipmentAdrielAllada1
 

What's hot (20)

Computer keyboard basics
Computer keyboard basicsComputer keyboard basics
Computer keyboard basics
 
Parts of keyboard and proper handling
Parts of keyboard and proper handlingParts of keyboard and proper handling
Parts of keyboard and proper handling
 
WWW and web browser
WWW and web browserWWW and web browser
WWW and web browser
 
Semi Detailed Lesson Plan in Programming Languages
Semi Detailed Lesson Plan in Programming LanguagesSemi Detailed Lesson Plan in Programming Languages
Semi Detailed Lesson Plan in Programming Languages
 
Ict computer hardware servicing cg
Ict computer hardware servicing cgIct computer hardware servicing cg
Ict computer hardware servicing cg
 
Computer Systems Servicing COC1-COC2
Computer Systems Servicing COC1-COC2Computer Systems Servicing COC1-COC2
Computer Systems Servicing COC1-COC2
 
CSS L07 - Preparing the Installer
CSS L07 - Preparing the InstallerCSS L07 - Preparing the Installer
CSS L07 - Preparing the Installer
 
#4 gr.1 home row keys
#4 gr.1  home row keys#4 gr.1  home row keys
#4 gr.1 home row keys
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
 
Performing Computer Operations (PCO)
Performing Computer Operations (PCO)Performing Computer Operations (PCO)
Performing Computer Operations (PCO)
 
EMPOWERMENT TECHNOLOGIES - LESSON 4
EMPOWERMENT TECHNOLOGIES - LESSON 4EMPOWERMENT TECHNOLOGIES - LESSON 4
EMPOWERMENT TECHNOLOGIES - LESSON 4
 
Empowerment Technology
Empowerment TechnologyEmpowerment Technology
Empowerment Technology
 
K to 12 commercial cooking learning module
K to 12 commercial cooking learning moduleK to 12 commercial cooking learning module
K to 12 commercial cooking learning module
 
HTML/HTML5
HTML/HTML5HTML/HTML5
HTML/HTML5
 
How to create a html webpage using notepad
How to create a html webpage using notepadHow to create a html webpage using notepad
How to create a html webpage using notepad
 
K to 12 TLE Curriculum Guide for Computer Hardware Servicing
K to 12 TLE Curriculum Guide for Computer Hardware ServicingK to 12 TLE Curriculum Guide for Computer Hardware Servicing
K to 12 TLE Curriculum Guide for Computer Hardware Servicing
 
IP addressing Grade 10 TLE ICT
IP addressing Grade 10 TLE ICTIP addressing Grade 10 TLE ICT
IP addressing Grade 10 TLE ICT
 
Contextualized online-search-and-research-skills
Contextualized online-search-and-research-skillsContextualized online-search-and-research-skills
Contextualized online-search-and-research-skills
 
How to clean and store cooking tools and equipment
How to clean and store cooking tools and equipmentHow to clean and store cooking tools and equipment
How to clean and store cooking tools and equipment
 

Similar to Lesson plan htmltextformattingtag

Hyper text markup Language
Hyper text markup LanguageHyper text markup Language
Hyper text markup LanguageNaveeth Babu
 
SDP_HTML.pptx
SDP_HTML.pptxSDP_HTML.pptx
SDP_HTML.pptxVani011
 
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfHSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfAAFREEN SHAIKH
 
Html basics-auro skills
Html basics-auro skillsHtml basics-auro skills
Html basics-auro skillsBoneyGawande
 
Html update1(30 8-2009)
Html update1(30 8-2009)Html update1(30 8-2009)
Html update1(30 8-2009)himankgupta31
 
HTML (Basic to Advance)
HTML (Basic to Advance)HTML (Basic to Advance)
HTML (Basic to Advance)Coder Tech
 
02 HTML-01.pdf
02 HTML-01.pdf02 HTML-01.pdf
02 HTML-01.pdfEshaYasir1
 
An introduction to html
An introduction to htmlAn introduction to html
An introduction to htmlkashifareed
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)Ahsan Rahim
 
Chapter 6 html
Chapter 6 htmlChapter 6 html
Chapter 6 htmlhome
 
Html (hypertext markup language)
Html (hypertext markup language)Html (hypertext markup language)
Html (hypertext markup language)Anuj Singh Rajput
 
Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3bluejayjunior
 

Similar to Lesson plan htmltextformattingtag (20)

Hyper text markup Language
Hyper text markup LanguageHyper text markup Language
Hyper text markup Language
 
IT Unit III.pptx
IT Unit III.pptxIT Unit III.pptx
IT Unit III.pptx
 
TagsL1.pptx
TagsL1.pptxTagsL1.pptx
TagsL1.pptx
 
SDP_HTML.pptx
SDP_HTML.pptxSDP_HTML.pptx
SDP_HTML.pptx
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
 
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdfHSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
 
Html1
Html1Html1
Html1
 
Html basics-auro skills
Html basics-auro skillsHtml basics-auro skills
Html basics-auro skills
 
Advance HTML
Advance HTMLAdvance HTML
Advance HTML
 
Html update1(30 8-2009)
Html update1(30 8-2009)Html update1(30 8-2009)
Html update1(30 8-2009)
 
html.pdf
html.pdfhtml.pdf
html.pdf
 
HTML (Basic to Advance)
HTML (Basic to Advance)HTML (Basic to Advance)
HTML (Basic to Advance)
 
02 HTML-01.pdf
02 HTML-01.pdf02 HTML-01.pdf
02 HTML-01.pdf
 
HTML guide for beginners
HTML guide for beginnersHTML guide for beginners
HTML guide for beginners
 
An introduction to html
An introduction to htmlAn introduction to html
An introduction to html
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
Chapter 6 html
Chapter 6 htmlChapter 6 html
Chapter 6 html
 
Html (hypertext markup language)
Html (hypertext markup language)Html (hypertext markup language)
Html (hypertext markup language)
 
Html
HtmlHtml
Html
 
Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3
 

More from Keith Borgonia Manatad (20)

Evaluation form
Evaluation formEvaluation form
Evaluation form
 
Leasson plan in TLE manicure
Leasson plan in TLE manicureLeasson plan in TLE manicure
Leasson plan in TLE manicure
 
Nail care lesson plan asessssment
Nail care lesson plan asessssmentNail care lesson plan asessssment
Nail care lesson plan asessssment
 
Leson plan in tle nailcare plain manicure
Leson plan in tle   nailcare   plain manicureLeson plan in tle   nailcare   plain manicure
Leson plan in tle nailcare plain manicure
 
Nail care manicuredesign
Nail care manicuredesignNail care manicuredesign
Nail care manicuredesign
 
Waste management
Waste managementWaste management
Waste management
 
Tle tailoring 1
Tle tailoring 1Tle tailoring 1
Tle tailoring 1
 
Tle commercial cooking 2
Tle commercial cooking 2Tle commercial cooking 2
Tle commercial cooking 2
 
TLE commercial cooking 1
TLE commercial cooking 1TLE commercial cooking 1
TLE commercial cooking 1
 
Htm lrubric
Htm lrubricHtm lrubric
Htm lrubric
 
Edge cutting tools
Edge cutting toolsEdge cutting tools
Edge cutting tools
 
Lesson plan in carpentry tools
Lesson plan in carpentry toolsLesson plan in carpentry tools
Lesson plan in carpentry tools
 
Carpentry hand tools
Carpentry hand toolsCarpentry hand tools
Carpentry hand tools
 
Parts of high speed sewing machine
Parts of high speed  sewing machineParts of high speed  sewing machine
Parts of high speed sewing machine
 
Parts of sewing
Parts of sewingParts of sewing
Parts of sewing
 
TLE obtain measurement
TLE obtain measurementTLE obtain measurement
TLE obtain measurement
 
Sewing tools measuring devices
Sewing tools measuring devicesSewing tools measuring devices
Sewing tools measuring devices
 
para himo bado TLE
para himo bado TLEpara himo bado TLE
para himo bado TLE
 
Lesson plan 3
Lesson plan 3Lesson plan 3
Lesson plan 3
 
Over view of html
Over view of htmlOver view of html
Over view of html
 

Recently uploaded

18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 

Recently uploaded (20)

18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 

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.