SlideShare a Scribd company logo
SEMANTIC MARKUP
Presented By:Nabin jamkatel
Introduction
• There are some text elements that are not intended to affect
the structure of your web pages, but they do add extra
information to the pages they are known as semantic markup.
• The reason for using these markup is that other programs, such
as screen readers or search engines, can use this extra
information.
• Its purpose is to describe the content of your web pages more
accurately.
STRONG<strong>
• The use of the <strong> element indicates that its content has
strong importance.
• For example, the words contained in this element might be said
with strong emphasis.
• By default, browsers will show the contents of a <strong> element
in bold.
• Example
<p><strong>Beware:</strong> Pickpockets operate in this area.</p>
<p>This toy has many small pieces and is <strong>not suitable for
children under five years old. </strong></p>
EMPHASIS<em>
• The <em> element indicates emphasis that subtly changes the meaning
of a sentence.
• By default browsers will show the contents of an <em> element in italic.
• Example
<p>I <em>think</em> Ivy was the first.</p>
<p>I think <em>Ivy</em> was the first.</p>
<p>I think Ivy was the <em>first</em>.</p>
QUOTATIONS
• There are two elements commonly used for marking up
quotations:
1. <blockquote>
2. <q>
<blockquote>
• The <blockquote> element is used for longer quotes that take up an
entire paragraph.
• Note how the <p> element is still used inside the <blockquote> element.
• Browsers tend to indent the contents of the <blockquote> element.
• Example
<blockquote cite="http://en.wikipedia.org/wiki/ Winnie-the-Pooh">
<p>Did you ever stop to think, and forget to start again?</p>
</blockquote>
<q>
• The <q> element is used for shorter quotes that sit within a
paragraph. Browsers are supposed to put quotes around the
<q> element
• Internet Explorer does not support <q> therefore many people
avoid using the <q> element.
• Example
<p>As A.A. Milne said, <q>Some people talk to animals. Not many l
though. That's the problem.</q></p>
ABBREVIATIONS <abbr>& ACRONYMS<acronym>
• If you use an abbreviation or an acronym, then the <abbr> element can
be used.
• A title attribute on the opening tag is used to specify the full term.
• Example
<p><abbr title="Professor">Prof</abbr> Stephen Hawking is a theoretical
physicist and cosmologist.</p>
<p><acronym title="National Aeronautics and Space
Administration">NASA</acronym> do some crazy space stuff.</p>
CITATIONS<cite>
• When you are referencing a piece of work such as a book, film
or research paper, the <cite> element can be used to indicate
where the citation is from.
• Browsers will render the content of a <cite> element in italic
• Example
<p><cite>A Brief History of Time</cite> by Stephen Hawking has
sold over ten million copies worldwide.</p>
DEFINITIONS<dfn>
• The first time you explain some new terminology (perhaps an academic
concept or some jargon) in a document, it is known as the defining
instance of it.
• The <dfn> element is used to indicate the defining instance of a new
term.
• Example
<p>A <dfn>black hole</dfn> is a region of space from which nothing,
not even light, can escape.</p>
AUTHOR DETAILS<address>
• The <address> element has quite a specific use: to contain contact details
for the author of the page.
• It can contain a physical address, but it does not have to.
• For example, it may also contain a phone number or email address.
• Example
• <address>
• <p><a href="mailto:homer@example.org"> homer@example.org</a></p>
• <p>742 Evergreen Terrace, Springfield.</p> </address>
<ins> and <del>
• The <ins> element can be used to show content that has been inserted
into a document,
• while the <del> element can show text that has been deleted from it.
• The content of a <ins> element is usually underlined,
• while the content of a <del> element usually has a line through it.
• Example
<p>It was the <del>worst</del> <ins>best</ins> idea she had ever
had.</p>
<s>
• The <s> element indicates something that is no longer
accurate or relevant (but that should not be deleted).
• Visually the content of an <s> element will usually be displayed
with a line through the center.
• Example
<p>Laptop computer:</p> <p><s>Was RS 995</s></p> <p>Now
only RS 375</p>
Any Queries?

More Related Content

What's hot (20)

PPT
Google search tips
Yashwant Shet Talaulikar
 
PPTX
Links - IntraPage
nikkeisaurus
 
PPTX
Artistic Web Applications - Week3 - Part 1
Katherine McCurdy-Lapierre, R.G.D.
 
PPT
Website designing company in delhi
Css Founder
 
PDF
How to update HTML files
JadeMagnet
 
PPTX
HTML Lesson 1
TonyC445
 
PPTX
HTML Lesson 2
Danny Ambrosio
 
PPTX
Lab 4: Introduction to HTML
vanessajade
 
PDF
Intro to HTML (Kid's Class at TIY)
Marjorie Sample
 
PPT
Learning Html
Damian Gonz
 
DOCX
Lesson plan: HTML Formatting Texts and Paragraphs
Keith Borgonia Manatad
 
PPTX
Khoa dang (kay)
halfofdemon
 
PPTX
Html introduction by ikram niaz
ikram niaz
 
PPTX
uptu web technology unit 2 html
Abhishek Kesharwani
 
PDF
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
BookNet Canada
 
PPTX
Html link and list tags
Himanshu Pathak
 
PPT
HTML_Slideshow1
ldehn
 
PPTX
HTML Basics 1 workshop
John Allan
 
ODP
Joomla! SEO NYC 2010
Jessica Dunbar
 
Google search tips
Yashwant Shet Talaulikar
 
Links - IntraPage
nikkeisaurus
 
Artistic Web Applications - Week3 - Part 1
Katherine McCurdy-Lapierre, R.G.D.
 
Website designing company in delhi
Css Founder
 
How to update HTML files
JadeMagnet
 
HTML Lesson 1
TonyC445
 
HTML Lesson 2
Danny Ambrosio
 
Lab 4: Introduction to HTML
vanessajade
 
Intro to HTML (Kid's Class at TIY)
Marjorie Sample
 
Learning Html
Damian Gonz
 
Lesson plan: HTML Formatting Texts and Paragraphs
Keith Borgonia Manatad
 
Khoa dang (kay)
halfofdemon
 
Html introduction by ikram niaz
ikram niaz
 
uptu web technology unit 2 html
Abhishek Kesharwani
 
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
BookNet Canada
 
Html link and list tags
Himanshu Pathak
 
HTML_Slideshow1
ldehn
 
HTML Basics 1 workshop
John Allan
 
Joomla! SEO NYC 2010
Jessica Dunbar
 

Viewers also liked (11)

PPTX
Html 5 Semantics overview
Михаил Петров
 
PDF
Towards From Manual to Automatic Semantic Annotation: Based on Ontology Eleme...
IJwest
 
PDF
Paris talk
Pavel Rudnev
 
PPTX
Semantic structure of sentence
Gustina Savhira
 
PPTX
Semantics: The Meaning of Language
Jeffren Miguel
 
PPT
Semantics
Dr. Cupid Lucid
 
PDF
Semantics: Meanings of Language
JESSIE GRACE RUBRICO
 
PPT
Semantics: Seven types of meaning
Miftadia Laula
 
DOC
SYNONYMS, ANTONYMS, POLYSEMY, HOMONYM, AND HOMOGRAPH
Lili Lulu
 
PPTX
SEMANTICS
Hameel Khan
 
PPSX
Semantics
Kocaeli University
 
Html 5 Semantics overview
Михаил Петров
 
Towards From Manual to Automatic Semantic Annotation: Based on Ontology Eleme...
IJwest
 
Paris talk
Pavel Rudnev
 
Semantic structure of sentence
Gustina Savhira
 
Semantics: The Meaning of Language
Jeffren Miguel
 
Semantics
Dr. Cupid Lucid
 
Semantics: Meanings of Language
JESSIE GRACE RUBRICO
 
Semantics: Seven types of meaning
Miftadia Laula
 
SYNONYMS, ANTONYMS, POLYSEMY, HOMONYM, AND HOMOGRAPH
Lili Lulu
 
SEMANTICS
Hameel Khan
 
Ad

Similar to Semantic markup language (20)

PPT
Castro Chapter 4
Jeff Byrnes
 
PDF
03 HTML #burningkeyboards
Denis Ristic
 
PPTX
Zulueta-HTML-TAGS-FOR-INSERTIOfghdzrNS.pptx
MelyangIntong
 
PPTX
Html session1,2,3
vidhi mehta
 
PPTX
HTMLHTML HTML ghdgsahdaHTML HTML ghdgsahda.pptx
SadiaBaig6
 
PPTX
BSC notes of _HTML_Easyto understand lease see.pptx
VikasTuwar1
 
PPTX
HTML Basic Tags
Nisa Soomro
 
PDF
Class Intro / HTML Basics
Shawn Calvert
 
PDF
Html phrase tags
eShikshak
 
PDF
2- Learn HTML Fundamentals / Text Formatting
In a Rocket
 
PPTX
Session-1, Revision of HTML.pptx
nehalbothra3
 
PDF
3. Web Technology Advanced HTML
Jyoti Yadav
 
PPTX
Frontend Devlopment internship batch 2024-2.pptx
bankheleom
 
PPTX
Frontend Devlopment internship batch 2024.pptx
bankheleom
 
PPTX
Introduction to HTML- Week 3- HTMLSyntax
MohammadRafsunIslam
 
PPT
chapter- 2 Basics of web design forcusing on html basics
micc19920
 
DOCX
Lesson A.1 - Introduction to Web Development.docx
MarlonMagtibay3
 
PPTX
Web Design Lecture2.pptx
MohammedNoor74
 
DOCX
INTRODUCTION TO HTML
bwire sedrick
 
PPTX
chapter2 of Web Development and Design Foundations with HTML5
daiwikkakarla1
 
Castro Chapter 4
Jeff Byrnes
 
03 HTML #burningkeyboards
Denis Ristic
 
Zulueta-HTML-TAGS-FOR-INSERTIOfghdzrNS.pptx
MelyangIntong
 
Html session1,2,3
vidhi mehta
 
HTMLHTML HTML ghdgsahdaHTML HTML ghdgsahda.pptx
SadiaBaig6
 
BSC notes of _HTML_Easyto understand lease see.pptx
VikasTuwar1
 
HTML Basic Tags
Nisa Soomro
 
Class Intro / HTML Basics
Shawn Calvert
 
Html phrase tags
eShikshak
 
2- Learn HTML Fundamentals / Text Formatting
In a Rocket
 
Session-1, Revision of HTML.pptx
nehalbothra3
 
3. Web Technology Advanced HTML
Jyoti Yadav
 
Frontend Devlopment internship batch 2024-2.pptx
bankheleom
 
Frontend Devlopment internship batch 2024.pptx
bankheleom
 
Introduction to HTML- Week 3- HTMLSyntax
MohammadRafsunIslam
 
chapter- 2 Basics of web design forcusing on html basics
micc19920
 
Lesson A.1 - Introduction to Web Development.docx
MarlonMagtibay3
 
Web Design Lecture2.pptx
MohammedNoor74
 
INTRODUCTION TO HTML
bwire sedrick
 
chapter2 of Web Development and Design Foundations with HTML5
daiwikkakarla1
 
Ad

More from Partnered Health (20)

PDF
Spam Email identification
Partnered Health
 
PPTX
Final spam-e-mail-detection
Partnered Health
 
PPTX
Java For beginners and CSIT and IT students
Partnered Health
 
PPT
Introduction to computer graphics
Partnered Health
 
PPT
Introduction to computer graphics
Partnered Health
 
PPTX
Hardware concept for graphics
Partnered Health
 
PPTX
Dom(document object model)
Partnered Health
 
PPTX
Web technology
Partnered Health
 
PPTX
Web inspector for front end developers..
Partnered Health
 
PPTX
Web crawler and applications
Partnered Health
 
PPTX
Meta tags
Partnered Health
 
PPTX
Listing in web development and uses
Partnered Health
 
PPTX
Fire bugfirebug and ways to install it..
Partnered Health
 
PPTX
Dreamweaver and idm
Partnered Health
 
PPTX
File structure
Partnered Health
 
PPTX
Structure
Partnered Health
 
PPTX
Analysis of unix and windows
Partnered Health
 
PPTX
Organizational aspect of sample survey
Partnered Health
 
PPTX
Question and questionnaire design
Partnered Health
 
PPTX
Sampling
Partnered Health
 
Spam Email identification
Partnered Health
 
Final spam-e-mail-detection
Partnered Health
 
Java For beginners and CSIT and IT students
Partnered Health
 
Introduction to computer graphics
Partnered Health
 
Introduction to computer graphics
Partnered Health
 
Hardware concept for graphics
Partnered Health
 
Dom(document object model)
Partnered Health
 
Web technology
Partnered Health
 
Web inspector for front end developers..
Partnered Health
 
Web crawler and applications
Partnered Health
 
Meta tags
Partnered Health
 
Listing in web development and uses
Partnered Health
 
Fire bugfirebug and ways to install it..
Partnered Health
 
Dreamweaver and idm
Partnered Health
 
File structure
Partnered Health
 
Structure
Partnered Health
 
Analysis of unix and windows
Partnered Health
 
Organizational aspect of sample survey
Partnered Health
 
Question and questionnaire design
Partnered Health
 

Recently uploaded (20)

PDF
AI_MOD_1.pdf artificial intelligence notes
shreyarrce
 
PDF
The Internet - By the numbers, presented at npNOG 11
APNIC
 
PPTX
一比一原版(SUNY-Albany毕业证)纽约州立大学奥尔巴尼分校毕业证如何办理
Taqyea
 
PDF
Build Fast, Scale Faster: Milvus vs. Zilliz Cloud for Production-Ready AI
Zilliz
 
PPTX
sajflsajfljsdfljslfjslfsdfas;fdsfksadfjlsdflkjslgfs;lfjlsajfl;sajfasfd.pptx
theknightme
 
PDF
The-Hidden-Dangers-of-Skipping-Penetration-Testing.pdf.pdf
naksh4thra
 
PPTX
法国巴黎第二大学本科毕业证{Paris 2学费发票Paris 2成绩单}办理方法
Taqyea
 
PPT
introductio to computers by arthur janry
RamananMuthukrishnan
 
PPTX
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
PDF
Cleaning up your RPKI invalids, presented at PacNOG 35
APNIC
 
PPTX
04 Output 1 Instruments & Tools (3).pptx
GEDYIONGebre
 
PPTX
Optimization_Techniques_ML_Presentation.pptx
farispalayi
 
PPTX
Orchestrating things in Angular application
Peter Abraham
 
DOCX
Custom vs. Off-the-Shelf Banking Software
KristenCarter35
 
PPTX
L1A Season 1 ENGLISH made by A hegy fixed
toszolder91
 
PPTX
PE introd.pptxfrgfgfdgfdgfgrtretrt44t444
nepmithibai2024
 
PDF
Apple_Environmental_Progress_Report_2025.pdf
yiukwong
 
PDF
BRKACI-1003 ACI Brownfield Migration - Real World Experiences and Best Practi...
fcesargonca
 
PPTX
ONLINE BIRTH CERTIFICATE APPLICATION SYSYTEM PPT.pptx
ShyamasreeDutta
 
PDF
Azure_DevOps introduction for CI/CD and Agile
henrymails
 
AI_MOD_1.pdf artificial intelligence notes
shreyarrce
 
The Internet - By the numbers, presented at npNOG 11
APNIC
 
一比一原版(SUNY-Albany毕业证)纽约州立大学奥尔巴尼分校毕业证如何办理
Taqyea
 
Build Fast, Scale Faster: Milvus vs. Zilliz Cloud for Production-Ready AI
Zilliz
 
sajflsajfljsdfljslfjslfsdfas;fdsfksadfjlsdflkjslgfs;lfjlsajfl;sajfasfd.pptx
theknightme
 
The-Hidden-Dangers-of-Skipping-Penetration-Testing.pdf.pdf
naksh4thra
 
法国巴黎第二大学本科毕业证{Paris 2学费发票Paris 2成绩单}办理方法
Taqyea
 
introductio to computers by arthur janry
RamananMuthukrishnan
 
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
Cleaning up your RPKI invalids, presented at PacNOG 35
APNIC
 
04 Output 1 Instruments & Tools (3).pptx
GEDYIONGebre
 
Optimization_Techniques_ML_Presentation.pptx
farispalayi
 
Orchestrating things in Angular application
Peter Abraham
 
Custom vs. Off-the-Shelf Banking Software
KristenCarter35
 
L1A Season 1 ENGLISH made by A hegy fixed
toszolder91
 
PE introd.pptxfrgfgfdgfdgfgrtretrt44t444
nepmithibai2024
 
Apple_Environmental_Progress_Report_2025.pdf
yiukwong
 
BRKACI-1003 ACI Brownfield Migration - Real World Experiences and Best Practi...
fcesargonca
 
ONLINE BIRTH CERTIFICATE APPLICATION SYSYTEM PPT.pptx
ShyamasreeDutta
 
Azure_DevOps introduction for CI/CD and Agile
henrymails
 

Semantic markup language

  • 2. Introduction • There are some text elements that are not intended to affect the structure of your web pages, but they do add extra information to the pages they are known as semantic markup. • The reason for using these markup is that other programs, such as screen readers or search engines, can use this extra information. • Its purpose is to describe the content of your web pages more accurately.
  • 3. STRONG<strong> • The use of the <strong> element indicates that its content has strong importance. • For example, the words contained in this element might be said with strong emphasis. • By default, browsers will show the contents of a <strong> element in bold. • Example <p><strong>Beware:</strong> Pickpockets operate in this area.</p> <p>This toy has many small pieces and is <strong>not suitable for children under five years old. </strong></p>
  • 4. EMPHASIS<em> • The <em> element indicates emphasis that subtly changes the meaning of a sentence. • By default browsers will show the contents of an <em> element in italic. • Example <p>I <em>think</em> Ivy was the first.</p> <p>I think <em>Ivy</em> was the first.</p> <p>I think Ivy was the <em>first</em>.</p>
  • 5. QUOTATIONS • There are two elements commonly used for marking up quotations: 1. <blockquote> 2. <q>
  • 6. <blockquote> • The <blockquote> element is used for longer quotes that take up an entire paragraph. • Note how the <p> element is still used inside the <blockquote> element. • Browsers tend to indent the contents of the <blockquote> element. • Example <blockquote cite="http://en.wikipedia.org/wiki/ Winnie-the-Pooh"> <p>Did you ever stop to think, and forget to start again?</p> </blockquote>
  • 7. <q> • The <q> element is used for shorter quotes that sit within a paragraph. Browsers are supposed to put quotes around the <q> element • Internet Explorer does not support <q> therefore many people avoid using the <q> element. • Example <p>As A.A. Milne said, <q>Some people talk to animals. Not many l though. That's the problem.</q></p>
  • 8. ABBREVIATIONS <abbr>& ACRONYMS<acronym> • If you use an abbreviation or an acronym, then the <abbr> element can be used. • A title attribute on the opening tag is used to specify the full term. • Example <p><abbr title="Professor">Prof</abbr> Stephen Hawking is a theoretical physicist and cosmologist.</p> <p><acronym title="National Aeronautics and Space Administration">NASA</acronym> do some crazy space stuff.</p>
  • 9. CITATIONS<cite> • When you are referencing a piece of work such as a book, film or research paper, the <cite> element can be used to indicate where the citation is from. • Browsers will render the content of a <cite> element in italic • Example <p><cite>A Brief History of Time</cite> by Stephen Hawking has sold over ten million copies worldwide.</p>
  • 10. DEFINITIONS<dfn> • The first time you explain some new terminology (perhaps an academic concept or some jargon) in a document, it is known as the defining instance of it. • The <dfn> element is used to indicate the defining instance of a new term. • Example <p>A <dfn>black hole</dfn> is a region of space from which nothing, not even light, can escape.</p>
  • 11. AUTHOR DETAILS<address> • The <address> element has quite a specific use: to contain contact details for the author of the page. • It can contain a physical address, but it does not have to. • For example, it may also contain a phone number or email address. • Example • <address> • <p><a href="mailto:[email protected]"> [email protected]</a></p> • <p>742 Evergreen Terrace, Springfield.</p> </address>
  • 12. <ins> and <del> • The <ins> element can be used to show content that has been inserted into a document, • while the <del> element can show text that has been deleted from it. • The content of a <ins> element is usually underlined, • while the content of a <del> element usually has a line through it. • Example <p>It was the <del>worst</del> <ins>best</ins> idea she had ever had.</p>
  • 13. <s> • The <s> element indicates something that is no longer accurate or relevant (but that should not be deleted). • Visually the content of an <s> element will usually be displayed with a line through the center. • Example <p>Laptop computer:</p> <p><s>Was RS 995</s></p> <p>Now only RS 375</p>