SlideShare a Scribd company logo
2
Lesson Plan
Lesson Objectives  Design a Web Page using HTML
Learning Outcomes  Improve the programming and design skills
 Apply the various tags in HTML to create websites
Learning Activities/
Tasks/Differentiation
 Pre-Assessment, Discussion to analyze the knowledge in Basic HTML
Tags
Real Life Connections and
Cross Curricular Link
 Design web pages on various topics
Assessments  Practicing HTML coding
Resources  https://www.w3schools.com/html/default.asp
Extended Learning  Find out more properties and values for various tags learned.`
Introduction to HTML
HTML
4
Website??
Webpage??
HTML??
HTML
 HTML Basics -YouTube
5
HTML
HTML means Hyper Text Markup Language.
Ted Nelson introduced the word hypertext in 1960s.
HTML documents saved with an extension .htm or .html.
It is a set of special codes included to control the layout and
appearance of the text.
6
Tools Used to Create HTML Pages
Web Browser: It is a computer program which interprets the HTML
commands written in a HTML document to arrange and display the
web page.
Text Editor: These are programs that are used to create or compose
HTML documents. Notepad and WordPad are two examples of Text
editor.
7
Basic Structure of HTML Document
<HTML>
<HEAD>
<TITLE> ……………….</TITLE>
</HEAD>
<BODY>
--------------------------------
--------------------------------
</BODY>
</HTML>
8
Steps to create a web page:
1. Start Notepad program
2. Type the contents of your HTML page.
3. Save the file with .htm or .html extension
4. When you save it a browser icon appears with your
filename.
5. Double click on the icon to view the page.
9
Steps to create a web page:
10
Steps to create a web page:
11
12
Basic Structure of HTML Document
13
Basic Structure of HTML Document
14
Tags in HTML
The basic elements of HTML is called tags “ < >”
Tags are used for formatting and structuring the webpages.
Tags are not shown in the web page.
There are 2 types of tags in HTML
1. Container Elements
2. Empty Elements
15
Tags in HTML
Container Elements:
 They are ON and OFF tags
 Container elements occurs in pairs.
 Example: <HTML> </HTML>, <TITLE> </TITLE>, <BODY> </BODY>
Empty Elements
 These elements have only the ON tag.
 Example: Paragraph Tag <p>
16
HTML tag
 <HTML></HTML>
 It is a container element
 It is used as an identification by the browser to identify HTML document
 It shows the start and end of the HTML document
 It does not affect the appearance of the document.
 It is not displayed by the browser.
17
HEAD tag
 <HEAD></HEAD>
 It is a container element
 It is not displayed by the browser.
 Title tag appears within the head tag.
18
TITLE tag
 <TITLE></TITLE>
 It is a container element
 It appears on the title bar of the web browser
 It is used to provide title to the document.
19
BODY tag
 <BODY></BODY>
 It is a container element
 It can contain images, sounds and graphics
 All the contents that is visible on a web page is enclosed inside the body tag.
20
HEADING tags
 These tags are used to specify the size of the headings.
 Example : <H1></H1>, <H2> </H2>…….<H6></H6>
 The size of the text decreases from H1 to H6
21
HEADING tags
 <HTML><HEAD><TITLE>Level of Heading</TITLE> </HEAD>
 <BODY>
 <H1>Level 1 Heading</H1>
 <H2>Level 2 Heading</H2>
 <H3>Level 3 Heading</H3>
 <H4>Level 4 Heading</H4>
 <H5>Level 5 Heading</H5>
 <H6>Level 6 Heading</H6>
 </BODY>
 </HTML>
22
Paragraph tags
 <P>
 It is an empty tag( closing tag is not required)
 It is used to create paragraphs
 It inserts one blank line in the beginning of the paragraph
23
Page Break tag
 <BR>
 It is an empty tag( closing tag is not required)
 Used with a paragraph, whenever you want to start a new line.
 It does not leave a blank line between the line of text
24
HEADING tags
 <HTML><HEAD><TITLE>paragraphsandbreaks</TITLE> </HEAD>
 <BODY>
 <p> HTML document has 2 parts:<br>Head and Body<br> The head contains
title of web page and body part contains the details of text
 </BODY>
 </HTML>
25
FORMATTING tags
HTML provides tags to chose type, size and color of letters. Hence appearance of
the text can be impressive.
 BOLD TAG: <B> ……….. </B>
 ITALICS TAG: <I> ……….. </I>
 UNDERLINE TAG: <U> ……….. </U>
 SUPERSCRIPT TAG: <SUP> ……….. </SUP>
 SUBSCRIPT TAG: <SUB> ……….. </SUB>
 CENTER TAG: <CENTER>…………</CENTER>
 FONT TAG: <FONT FACE=“name of the font” color=“color name” size=“text
size”> ……. </FONT>
26
FORMATTING tags
<html>
<head><title> Let's learn formatting.. </title></head>
<body >
The bold tag <b> BOLD </b> <br>
The italics tag <i> ITALICS </i> <br>
The underline tag<u> UNDERLINE </u>
</body>
</html>
27
FORMATTING tags
<html>
<head><title> Let's learn formatting.. </title></head>
<body bgcolor="red" text="yellow">
<H1>MATHS EQUATION </H1>
<H3>(A+B)<sup>2</sup>=A<sup>2</sup>+B<sup>2</sup>+2AB</H3>
</body>
</htm>
28
Attributes of Body Tag
BACKGROUND: <body BACKGROUND=“filepath”>
BGCOLOR: <body BGCOLOR=“color”>
TEXT: <body TEXT=“color”>
29
Attributes of Body Tag
BACKGROUND: <body BACKGROUND=“filepath”>
BGCOLOR: <body BGCOLOR=“color”>
TEXT: <body TEXT=“color”>
30
Attributes of Body Tag
<html>
<head><title> Let's learn formatting.</title></head>
<body background="oip.jpg" text="red">
The attributes of the body tag
</body>
</html>
31
32
 An HTML marquee is a scrolling piece of text displayed either horizontally
across or vertically down your webpage.
 The tag <marquee></marquee> is used.
 To provide direction to the marquee direction attribute is used.
 Example:
 <marquee direction="right">MY TABLE</marquee>
33
Marquee
34
Marquee
 Task 1: Design a HTML page to display a Marquee “ Hi welcome to my page “ .
 Task 2: Design a HTML page to display a marquee sliding from right to left
 Task 3 : Design a HTML page to create the marquee as shown in the screen.
35
Marquee
Adding a URL and Linking to another page
 The <a> tag is used to create a link.(hyperlink)
 <a> stands for “anchor”.
 The letter “a” in the tag is then followed by an attribute.
 For a link to another web page, the “a" is followed by “href".
 Example:
<body>
< a href=https://www.bing.com/>Bing</a>
</body>
36
Adding an Image
 To put an image on a Web page, first move the image file into the same directory as the HTML
file.
 Each image must carry at least two attributes: the src attribute, and an alt attribute.
 The src attribute tells the browser where to find the image. Its value is the URL of the image file.
 Whereas, the alt attribute provides an alternative text for the image, if it is unavailable or
cannot be displayed for some reason. Its value should be a meaningful substitute for the image.
 The <img > element is an empty element.
 Example:
o <img src="kites.jpg" alt="Flying Kites">
o <img src="sky.jpg" alt="Cloudy Sky">
o <img src="balloons.jpg" alt="Balloons">
37
Setting the Width and Height of an Image
The width and height attributes are used to specify the width and
height of an image.
Example:
<img src="kites.jpg" alt="Flying Kites"
width="300" height="300">
<img src="sky.jpg" alt="Cloudy Sky" width="250"
height="150">
<img src="balloons.jpg" alt="Balloons"
width="200" height="200">
38

More Related Content

PPTX
Lec 2 Web.pptxLec 2 Web.pptxLec 2 Web.pptx
PDF
Intro to html revised2
PPT
PPT
introdution-to-html.ppt
PDF
2a web technology html basics 1
PPTX
HTML-INTRO.pptx
PPT
introdution-to-html (1).ppt
PDF
Introduction to HTML programming for webpages.pdf
Lec 2 Web.pptxLec 2 Web.pptxLec 2 Web.pptx
Intro to html revised2
introdution-to-html.ppt
2a web technology html basics 1
HTML-INTRO.pptx
introdution-to-html (1).ppt
Introduction to HTML programming for webpages.pdf

Similar to Grade 6-Hyper Text Markup Language .pptx (20)

PPTX
3 1-html-fundamentals-110302100520-phpapp02
PPTX
HTML Fundamentals
PPTX
Section1 HTML (part 1) Web technology for b
PPTX
Web Site Designing - Basic
PPT
introdution to html notes and practice.ppt
PPT
introduction to html.ppt
PPT
introdution-to-htmlppt.ppt
PPT
introdution-to-html,regarding high level language
PPTX
HTML by Telerik Akademy
PPTX
PPT
Html basics
PPT
introduction to HTML. How to learn HTML coding
PPTX
001-Hyper-Text-Markup-Language-Lesson.pptx
PPT
HTML Programming, Html tags, Html tools,
PPT
introdution-to-html(Hypertext Markup Language).ppt
PPTX
Introduction to html
DOCX
Practical file on web technology(html)
PPTX
html tutorial
PPTX
HTML_HEADER PART TAGS .pptx
PPTX
3 1-html-fundamentals-110302100520-phpapp02
HTML Fundamentals
Section1 HTML (part 1) Web technology for b
Web Site Designing - Basic
introdution to html notes and practice.ppt
introduction to html.ppt
introdution-to-htmlppt.ppt
introdution-to-html,regarding high level language
HTML by Telerik Akademy
Html basics
introduction to HTML. How to learn HTML coding
001-Hyper-Text-Markup-Language-Lesson.pptx
HTML Programming, Html tags, Html tools,
introdution-to-html(Hypertext Markup Language).ppt
Introduction to html
Practical file on web technology(html)
html tutorial
HTML_HEADER PART TAGS .pptx
Ad

Recently uploaded (20)

PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPT
Teaching material agriculture food technology
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Encapsulation theory and applications.pdf
PPTX
Spectroscopy.pptx food analysis technology
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Approach and Philosophy of On baking technology
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PPTX
A Presentation on Artificial Intelligence
PDF
MIND Revenue Release Quarter 2 2025 Press Release
Spectral efficient network and resource selection model in 5G networks
OMC Textile Division Presentation 2021.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
Teaching material agriculture food technology
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Encapsulation theory and applications.pdf
Spectroscopy.pptx food analysis technology
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Approach and Philosophy of On baking technology
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Assigned Numbers - 2025 - Bluetooth® Document
Univ-Connecticut-ChatGPT-Presentaion.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
SOPHOS-XG Firewall Administrator PPT.pptx
A Presentation on Artificial Intelligence
MIND Revenue Release Quarter 2 2025 Press Release
Ad

Grade 6-Hyper Text Markup Language .pptx

  • 1. 2 Lesson Plan Lesson Objectives  Design a Web Page using HTML Learning Outcomes  Improve the programming and design skills  Apply the various tags in HTML to create websites Learning Activities/ Tasks/Differentiation  Pre-Assessment, Discussion to analyze the knowledge in Basic HTML Tags Real Life Connections and Cross Curricular Link  Design web pages on various topics Assessments  Practicing HTML coding Resources  https://www.w3schools.com/html/default.asp Extended Learning  Find out more properties and values for various tags learned.`
  • 4. HTML  HTML Basics -YouTube 5
  • 5. HTML HTML means Hyper Text Markup Language. Ted Nelson introduced the word hypertext in 1960s. HTML documents saved with an extension .htm or .html. It is a set of special codes included to control the layout and appearance of the text. 6
  • 6. Tools Used to Create HTML Pages Web Browser: It is a computer program which interprets the HTML commands written in a HTML document to arrange and display the web page. Text Editor: These are programs that are used to create or compose HTML documents. Notepad and WordPad are two examples of Text editor. 7
  • 7. Basic Structure of HTML Document <HTML> <HEAD> <TITLE> ……………….</TITLE> </HEAD> <BODY> -------------------------------- -------------------------------- </BODY> </HTML> 8
  • 8. Steps to create a web page: 1. Start Notepad program 2. Type the contents of your HTML page. 3. Save the file with .htm or .html extension 4. When you save it a browser icon appears with your filename. 5. Double click on the icon to view the page. 9
  • 9. Steps to create a web page: 10
  • 10. Steps to create a web page: 11
  • 11. 12
  • 12. Basic Structure of HTML Document 13
  • 13. Basic Structure of HTML Document 14
  • 14. Tags in HTML The basic elements of HTML is called tags “ < >” Tags are used for formatting and structuring the webpages. Tags are not shown in the web page. There are 2 types of tags in HTML 1. Container Elements 2. Empty Elements 15
  • 15. Tags in HTML Container Elements:  They are ON and OFF tags  Container elements occurs in pairs.  Example: <HTML> </HTML>, <TITLE> </TITLE>, <BODY> </BODY> Empty Elements  These elements have only the ON tag.  Example: Paragraph Tag <p> 16
  • 16. HTML tag  <HTML></HTML>  It is a container element  It is used as an identification by the browser to identify HTML document  It shows the start and end of the HTML document  It does not affect the appearance of the document.  It is not displayed by the browser. 17
  • 17. HEAD tag  <HEAD></HEAD>  It is a container element  It is not displayed by the browser.  Title tag appears within the head tag. 18
  • 18. TITLE tag  <TITLE></TITLE>  It is a container element  It appears on the title bar of the web browser  It is used to provide title to the document. 19
  • 19. BODY tag  <BODY></BODY>  It is a container element  It can contain images, sounds and graphics  All the contents that is visible on a web page is enclosed inside the body tag. 20
  • 20. HEADING tags  These tags are used to specify the size of the headings.  Example : <H1></H1>, <H2> </H2>…….<H6></H6>  The size of the text decreases from H1 to H6 21
  • 21. HEADING tags  <HTML><HEAD><TITLE>Level of Heading</TITLE> </HEAD>  <BODY>  <H1>Level 1 Heading</H1>  <H2>Level 2 Heading</H2>  <H3>Level 3 Heading</H3>  <H4>Level 4 Heading</H4>  <H5>Level 5 Heading</H5>  <H6>Level 6 Heading</H6>  </BODY>  </HTML> 22
  • 22. Paragraph tags  <P>  It is an empty tag( closing tag is not required)  It is used to create paragraphs  It inserts one blank line in the beginning of the paragraph 23
  • 23. Page Break tag  <BR>  It is an empty tag( closing tag is not required)  Used with a paragraph, whenever you want to start a new line.  It does not leave a blank line between the line of text 24
  • 24. HEADING tags  <HTML><HEAD><TITLE>paragraphsandbreaks</TITLE> </HEAD>  <BODY>  <p> HTML document has 2 parts:<br>Head and Body<br> The head contains title of web page and body part contains the details of text  </BODY>  </HTML> 25
  • 25. FORMATTING tags HTML provides tags to chose type, size and color of letters. Hence appearance of the text can be impressive.  BOLD TAG: <B> ……….. </B>  ITALICS TAG: <I> ……….. </I>  UNDERLINE TAG: <U> ……….. </U>  SUPERSCRIPT TAG: <SUP> ……….. </SUP>  SUBSCRIPT TAG: <SUB> ……….. </SUB>  CENTER TAG: <CENTER>…………</CENTER>  FONT TAG: <FONT FACE=“name of the font” color=“color name” size=“text size”> ……. </FONT> 26
  • 26. FORMATTING tags <html> <head><title> Let's learn formatting.. </title></head> <body > The bold tag <b> BOLD </b> <br> The italics tag <i> ITALICS </i> <br> The underline tag<u> UNDERLINE </u> </body> </html> 27
  • 27. FORMATTING tags <html> <head><title> Let's learn formatting.. </title></head> <body bgcolor="red" text="yellow"> <H1>MATHS EQUATION </H1> <H3>(A+B)<sup>2</sup>=A<sup>2</sup>+B<sup>2</sup>+2AB</H3> </body> </htm> 28
  • 28. Attributes of Body Tag BACKGROUND: <body BACKGROUND=“filepath”> BGCOLOR: <body BGCOLOR=“color”> TEXT: <body TEXT=“color”> 29
  • 29. Attributes of Body Tag BACKGROUND: <body BACKGROUND=“filepath”> BGCOLOR: <body BGCOLOR=“color”> TEXT: <body TEXT=“color”> 30
  • 30. Attributes of Body Tag <html> <head><title> Let's learn formatting.</title></head> <body background="oip.jpg" text="red"> The attributes of the body tag </body> </html> 31
  • 31. 32
  • 32.  An HTML marquee is a scrolling piece of text displayed either horizontally across or vertically down your webpage.  The tag <marquee></marquee> is used.  To provide direction to the marquee direction attribute is used.  Example:  <marquee direction="right">MY TABLE</marquee> 33 Marquee
  • 34.  Task 1: Design a HTML page to display a Marquee “ Hi welcome to my page “ .  Task 2: Design a HTML page to display a marquee sliding from right to left  Task 3 : Design a HTML page to create the marquee as shown in the screen. 35 Marquee
  • 35. Adding a URL and Linking to another page  The <a> tag is used to create a link.(hyperlink)  <a> stands for “anchor”.  The letter “a” in the tag is then followed by an attribute.  For a link to another web page, the “a" is followed by “href".  Example: <body> < a href=https://www.bing.com/>Bing</a> </body> 36
  • 36. Adding an Image  To put an image on a Web page, first move the image file into the same directory as the HTML file.  Each image must carry at least two attributes: the src attribute, and an alt attribute.  The src attribute tells the browser where to find the image. Its value is the URL of the image file.  Whereas, the alt attribute provides an alternative text for the image, if it is unavailable or cannot be displayed for some reason. Its value should be a meaningful substitute for the image.  The <img > element is an empty element.  Example: o <img src="kites.jpg" alt="Flying Kites"> o <img src="sky.jpg" alt="Cloudy Sky"> o <img src="balloons.jpg" alt="Balloons"> 37
  • 37. Setting the Width and Height of an Image The width and height attributes are used to specify the width and height of an image. Example: <img src="kites.jpg" alt="Flying Kites" width="300" height="300"> <img src="sky.jpg" alt="Cloudy Sky" width="250" height="150"> <img src="balloons.jpg" alt="Balloons" width="200" height="200"> 38