SlideShare a Scribd company logo
1 of 14
Column X Column Y
_____1. Site Map
_____2. Telnet
_____3. Gopher
_____4. Internet Protocol
_____5. FTP
_____6. Internet
_____7. URL
_____8. Web Browser
_____9. Survey
_____10. Typeface
A. It is a formatted text string used by web browsers to access a site.
B. It is a software which allows user to access and display the information or
HTML files on the WWW.
C. It is an early text based to access documents in internet.
D. It is a visual or textually organized model of a website’s content.
E. It is the process of collecting data used to gather information about certain
issues or topics.
F. This is the set of rules that allow for inter-machine communication on the
Internet.
G. It is a set of characters of the same design.
H. It allows for the transfer of files between a server and a computer.
I. It is a remote login application that permits to access other computer as if you
were actually there.
J. It is a network of computers linked together around the world.
K. It is a system of linked documents together and uses HTML.
Identification: What do the following internet protocols stand for?
Write your answer in the space provided.
11. SMTP - __________________________________
12. HTTP - __________________________________
13._________ 14.
Directory
15. _______________
http://www.digitalcitizenship.net/index/registration-form.htm
<HTML> TAG
INFORMATION COMMUNICATION TECHNOLOGY - 8
Objectives
 Define HTML5 tags;
 Describe the new semantic tags in HTML5; and
 Create a semantic layout in HTML5.
Defining HTML Tags
 Tags are markers in HTML documents. It indicates special types of coding
that are used to specify documents titles , itemized lists, create tables,
format text etc.
 Tags are always enclosed with a less than “<“ symbol and a greater than
“>” symbol.
 There are two basic type of tags:
 Paired Tags – This tag has a companion, the first tag is referred to as Opening
tag and the second it referred as Closing tag.
 Ex. This text is in <b> BOLD </b> letter.
 Unpaired Tags – Is also known as Stand Alone tag. It doesn’t need a closing
tag. Some of these tags only provide information about your HTML
document and doesn’t affect the content or how they are displayed.
Tags Description
<br> This tag will give you a line break. This means that the text will move and
start on the next line.
<hr> This tag will draw a horizontal line across your page. “hr” means horizontal
references.
<meta> This tag is used to store information usually relevant to browsers and
search engines.
<area> This tag is used for defining an area in an image map.
Basic Paired Tags
 Structural Tags
 These are mandatory and placed at the beginning and end of an HTML file.
Tags Description
<html> </html> For an HTML document
<head> </head> For the head section
<title> </title> For the web page title
<body> </body> For the body section
Example: <title> My First Web Page </title>
 Headings
 These tags are six levels of headings
Tags Description
<h1> </h1> Defines the most important heading (largest font size)
<h2> </h2>
<h3> </h3>
<h4> </h4>
<h5> </h5>
<h6> </h6> Defines the least important heading (smallest font size)
Example: <h1> This is my Personal page </h1>
 Formatting Tags
 These tags affect the appearance or the style of the words or sentences.
Tags Description
<em> </em> It is used to emphasize text and appears in italic text
<strong>
</strong>
It is used for emphasis and usually appears in bold text
<center> </center> It is used to place the text in the middle of page.
Example : <center> This is aligned at the center of the page </center>
 Separator/ Container tags
 These tags separate words and sentences on a page.
Tags Description
<p> </p> This defines the block of text as a paragraph
<br> </br> This tag gives you a line break
<hr> </hr> This draws a horizontal line in your page
<div> </div> This is used to separate the document into sections
Example:
Attributes
 An attribute is used to define the characteristics of an element and is
placed inside the element’s opening tag.
 Its being added within the a tag to extend and modify its actions.
 Tags can have multiple values with a double quotation sign “values”, which
follows an equal sign = after the attribute’s name.
Ex:
This text uses a <font face=“Jokerman”> Jokerman</font> font face.
Attribute/Name Value
Attributes
 All attributes are made up of two parts: a name and a value:
 The name is the property you want to set. For example, the paragraph <p> element in
the example carries an attribute whose name is align, which you can use to indicate the
alignment of paragraph on the page.
 The value is what you want the value of the property to be set and always put within
quotations. The below example shows three possible values of align attribute: left,
center and right.
Semantic Tags in HTML5
 There are semantic ways of writing codes in your web pages.
 Semantics means the relationship of meanings of sign or set of signs.
 You use HTML to reinforce structural meaning.
 HTML adds semantic tags to define layouts in more intuitive ways.
 The name of the tag reflects the purpose or part on the website.
Tags Description
<header> Contains introduction or group of navigation elements.
<footer> Defines the text on the bottom of the page, such as copy right or contact information.
<article> Contains independent item content, such as magazine article or forum post.
<aside> Defines a block of text that is tangential to the main discussion such as note, warning or tips.
<section> Defines Generic content or an application section. Ex. Book chapters, a site home page, News, contacts.
<nav> Contains the navigation links.
<details> Contains additional details that user can view or hide using an interactive widget.
<hgroup> The sections of headings using <h1> to <h6>, which start from the largest to the smallest.
HTML Tags

More Related Content

What's hot

What's hot (20)

Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
Web Page Designing
Web Page DesigningWeb Page Designing
Web Page Designing
 
Anchor tag HTML Presentation
Anchor tag HTML PresentationAnchor tag HTML Presentation
Anchor tag HTML Presentation
 
Html hyperlinks
Html hyperlinksHtml hyperlinks
Html hyperlinks
 
HTML5 - Insert images and Apply page backgrounds
HTML5 - Insert images and Apply page backgroundsHTML5 - Insert images and Apply page backgrounds
HTML5 - Insert images and Apply page backgrounds
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
Html list
Html listHtml list
Html list
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
HTML5 - create hyperlinks and anchors
HTML5 - create hyperlinks and anchorsHTML5 - create hyperlinks and anchors
HTML5 - create hyperlinks and anchors
 
Web design principles
Web design principlesWeb design principles
Web design principles
 
Principles of web design
Principles of web designPrinciples of web design
Principles of web design
 
Webpage Design Using Templates and Online WYSIWYG Platforms
Webpage Design Using Templates and Online WYSIWYG PlatformsWebpage Design Using Templates and Online WYSIWYG Platforms
Webpage Design Using Templates and Online WYSIWYG Platforms
 
Dynamic HTML (DHTML)
Dynamic HTML (DHTML)Dynamic HTML (DHTML)
Dynamic HTML (DHTML)
 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
 
Html
HtmlHtml
Html
 
Advance HTML
Advance HTMLAdvance HTML
Advance HTML
 
HTML Tags
HTML TagsHTML Tags
HTML Tags
 
CSS
CSSCSS
CSS
 
Images and Lists in HTML
Images and Lists in HTMLImages and Lists in HTML
Images and Lists in HTML
 

Similar to HTML Tags (20)

Html basics
Html basicsHtml basics
Html basics
 
HTML language and all its tags .....
HTML language and all its tags .....HTML language and all its tags .....
HTML language and all its tags .....
 
Html tags
Html tagsHtml tags
Html tags
 
Html
HtmlHtml
Html
 
Wp unit 1 (1)
Wp  unit 1 (1)Wp  unit 1 (1)
Wp unit 1 (1)
 
Over view of html
Over view of htmlOver view of html
Over view of html
 
html-basic.pdf
html-basic.pdfhtml-basic.pdf
html-basic.pdf
 
HTML/HTML5
HTML/HTML5HTML/HTML5
HTML/HTML5
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Html ppt computer
Html ppt computerHtml ppt computer
Html ppt computer
 
Html basics
Html basicsHtml basics
Html basics
 
static dynamic html tags
static dynamic html tagsstatic dynamic html tags
static dynamic html tags
 
Html basics NOTE
Html basics NOTEHtml basics NOTE
Html basics NOTE
 
Html project
Html projectHtml project
Html project
 
Html
HtmlHtml
Html
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambala
 
HTML.pdf
HTML.pdfHTML.pdf
HTML.pdf
 
Html introduction
Html introductionHtml introduction
Html introduction
 

More from Grayzon Gonzales, LPT

Lesson 2.2 Online Safety And Security.pptx
Lesson 2.2 Online Safety And Security.pptxLesson 2.2 Online Safety And Security.pptx
Lesson 2.2 Online Safety And Security.pptxGrayzon Gonzales, LPT
 
Computer hardware servicing practice occupational health and safety procedure
Computer hardware servicing   practice occupational health and safety procedure Computer hardware servicing   practice occupational health and safety procedure
Computer hardware servicing practice occupational health and safety procedure Grayzon Gonzales, LPT
 
HTML5- Create divisions in a web page
HTML5- Create divisions in a web pageHTML5- Create divisions in a web page
HTML5- Create divisions in a web pageGrayzon Gonzales, LPT
 
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLHTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLGrayzon Gonzales, LPT
 
Adobe Photoshop and its role in society ( Introduction)
Adobe Photoshop and its role in society ( Introduction) Adobe Photoshop and its role in society ( Introduction)
Adobe Photoshop and its role in society ( Introduction) Grayzon Gonzales, LPT
 

More from Grayzon Gonzales, LPT (11)

Lesson 2.2 Online Safety And Security.pptx
Lesson 2.2 Online Safety And Security.pptxLesson 2.2 Online Safety And Security.pptx
Lesson 2.2 Online Safety And Security.pptx
 
Lesson 2.1 Rules of Netiquette.pptx
Lesson 2.1 Rules of Netiquette.pptxLesson 2.1 Rules of Netiquette.pptx
Lesson 2.1 Rules of Netiquette.pptx
 
Lesson 1 Introudctioin to ICT.pptx
Lesson 1 Introudctioin to ICT.pptxLesson 1 Introudctioin to ICT.pptx
Lesson 1 Introudctioin to ICT.pptx
 
ICT as a Platform for Change
ICT as a Platform for Change ICT as a Platform for Change
ICT as a Platform for Change
 
Computer hardware servicing practice occupational health and safety procedure
Computer hardware servicing   practice occupational health and safety procedure Computer hardware servicing   practice occupational health and safety procedure
Computer hardware servicing practice occupational health and safety procedure
 
Small Basic - Branching and Loop
Small Basic - Branching and LoopSmall Basic - Branching and Loop
Small Basic - Branching and Loop
 
HTML5- Create divisions in a web page
HTML5- Create divisions in a web pageHTML5- Create divisions in a web page
HTML5- Create divisions in a web page
 
HTML5 - My First Webpage
HTML5 - My First Webpage HTML5 - My First Webpage
HTML5 - My First Webpage
 
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLHTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTML
 
Adobe Photoshop - Brush tool
Adobe Photoshop - Brush toolAdobe Photoshop - Brush tool
Adobe Photoshop - Brush tool
 
Adobe Photoshop and its role in society ( Introduction)
Adobe Photoshop and its role in society ( Introduction) Adobe Photoshop and its role in society ( Introduction)
Adobe Photoshop and its role in society ( Introduction)
 

Recently uploaded

A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)Christopher H Felton
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...aditipandeya
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663Call Girls Mumbai
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一Fs
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneCall girls in Ahmedabad High profile
 
Call Girls in East Of Kailash 9711199171 Delhi Enjoy Call Girls With Our Escorts
Call Girls in East Of Kailash 9711199171 Delhi Enjoy Call Girls With Our EscortsCall Girls in East Of Kailash 9711199171 Delhi Enjoy Call Girls With Our Escorts
Call Girls in East Of Kailash 9711199171 Delhi Enjoy Call Girls With Our Escortsindian call girls near you
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Roomdivyansh0kumar0
 
Denver Web Design brochure for public viewing
Denver Web Design brochure for public viewingDenver Web Design brochure for public viewing
Denver Web Design brochure for public viewingbigorange77
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
 

Recently uploaded (20)

A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Call Girls in East Of Kailash 9711199171 Delhi Enjoy Call Girls With Our Escorts
Call Girls in East Of Kailash 9711199171 Delhi Enjoy Call Girls With Our EscortsCall Girls in East Of Kailash 9711199171 Delhi Enjoy Call Girls With Our Escorts
Call Girls in East Of Kailash 9711199171 Delhi Enjoy Call Girls With Our Escorts
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Denver Web Design brochure for public viewing
Denver Web Design brochure for public viewingDenver Web Design brochure for public viewing
Denver Web Design brochure for public viewing
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
 

HTML Tags

  • 1. Column X Column Y _____1. Site Map _____2. Telnet _____3. Gopher _____4. Internet Protocol _____5. FTP _____6. Internet _____7. URL _____8. Web Browser _____9. Survey _____10. Typeface A. It is a formatted text string used by web browsers to access a site. B. It is a software which allows user to access and display the information or HTML files on the WWW. C. It is an early text based to access documents in internet. D. It is a visual or textually organized model of a website’s content. E. It is the process of collecting data used to gather information about certain issues or topics. F. This is the set of rules that allow for inter-machine communication on the Internet. G. It is a set of characters of the same design. H. It allows for the transfer of files between a server and a computer. I. It is a remote login application that permits to access other computer as if you were actually there. J. It is a network of computers linked together around the world. K. It is a system of linked documents together and uses HTML.
  • 2. Identification: What do the following internet protocols stand for? Write your answer in the space provided. 11. SMTP - __________________________________ 12. HTTP - __________________________________ 13._________ 14. Directory 15. _______________ http://www.digitalcitizenship.net/index/registration-form.htm
  • 4. Objectives  Define HTML5 tags;  Describe the new semantic tags in HTML5; and  Create a semantic layout in HTML5.
  • 5. Defining HTML Tags  Tags are markers in HTML documents. It indicates special types of coding that are used to specify documents titles , itemized lists, create tables, format text etc.  Tags are always enclosed with a less than “<“ symbol and a greater than “>” symbol.  There are two basic type of tags:  Paired Tags – This tag has a companion, the first tag is referred to as Opening tag and the second it referred as Closing tag.  Ex. This text is in <b> BOLD </b> letter.
  • 6.  Unpaired Tags – Is also known as Stand Alone tag. It doesn’t need a closing tag. Some of these tags only provide information about your HTML document and doesn’t affect the content or how they are displayed. Tags Description <br> This tag will give you a line break. This means that the text will move and start on the next line. <hr> This tag will draw a horizontal line across your page. “hr” means horizontal references. <meta> This tag is used to store information usually relevant to browsers and search engines. <area> This tag is used for defining an area in an image map.
  • 7. Basic Paired Tags  Structural Tags  These are mandatory and placed at the beginning and end of an HTML file. Tags Description <html> </html> For an HTML document <head> </head> For the head section <title> </title> For the web page title <body> </body> For the body section Example: <title> My First Web Page </title>
  • 8.  Headings  These tags are six levels of headings Tags Description <h1> </h1> Defines the most important heading (largest font size) <h2> </h2> <h3> </h3> <h4> </h4> <h5> </h5> <h6> </h6> Defines the least important heading (smallest font size) Example: <h1> This is my Personal page </h1>
  • 9.  Formatting Tags  These tags affect the appearance or the style of the words or sentences. Tags Description <em> </em> It is used to emphasize text and appears in italic text <strong> </strong> It is used for emphasis and usually appears in bold text <center> </center> It is used to place the text in the middle of page. Example : <center> This is aligned at the center of the page </center>
  • 10.  Separator/ Container tags  These tags separate words and sentences on a page. Tags Description <p> </p> This defines the block of text as a paragraph <br> </br> This tag gives you a line break <hr> </hr> This draws a horizontal line in your page <div> </div> This is used to separate the document into sections Example:
  • 11. Attributes  An attribute is used to define the characteristics of an element and is placed inside the element’s opening tag.  Its being added within the a tag to extend and modify its actions.  Tags can have multiple values with a double quotation sign “values”, which follows an equal sign = after the attribute’s name. Ex: This text uses a <font face=“Jokerman”> Jokerman</font> font face. Attribute/Name Value
  • 12. Attributes  All attributes are made up of two parts: a name and a value:  The name is the property you want to set. For example, the paragraph <p> element in the example carries an attribute whose name is align, which you can use to indicate the alignment of paragraph on the page.  The value is what you want the value of the property to be set and always put within quotations. The below example shows three possible values of align attribute: left, center and right.
  • 13. Semantic Tags in HTML5  There are semantic ways of writing codes in your web pages.  Semantics means the relationship of meanings of sign or set of signs.  You use HTML to reinforce structural meaning.  HTML adds semantic tags to define layouts in more intuitive ways.  The name of the tag reflects the purpose or part on the website. Tags Description <header> Contains introduction or group of navigation elements. <footer> Defines the text on the bottom of the page, such as copy right or contact information. <article> Contains independent item content, such as magazine article or forum post. <aside> Defines a block of text that is tangential to the main discussion such as note, warning or tips. <section> Defines Generic content or an application section. Ex. Book chapters, a site home page, News, contacts. <nav> Contains the navigation links. <details> Contains additional details that user can view or hide using an interactive widget. <hgroup> The sections of headings using <h1> to <h6>, which start from the largest to the smallest.