SlideShare a Scribd company logo
HTML
AUTHOR
R.D.SIVAKUMAR,M.Sc.,M.Phil.,M.Tech.,
Assistant Professor of Computer Science &
Assistant Professor and Head, Department of M.Com.(CA),
Ayya Nadar Janaki Ammal College,
Sivakasi – 626 124.
Mobile: 099440-42243
e-mail : sivamsccsit@gmail.com
website: www.rdsivakumar.blogspot.in
CO-AUTHOR
K.SIVAKAMI, B.Com. (CA)
Student of M.Com. (CA)
Ayya Nadar Janaki Ammal College,
Sivakasi – 626 124.
HTML
 HTML, which stands for Hyper Text Markup
Language, is the markup language for web pages.
 A markup language is a set of markup tags. HTML
uses markup tags to describe web pages.
HTML
 HTML is written in the form of HTML elements
consisting of “tags” surrounded by angle brackets
(like<html>)within the web page content.
 HTML tags normally come in pairs like<b> and </b>.
 The first tag in a pair is the start tag, the second tag
is the end tag They are also called opening tags and
closing tags.
HTML
 A web browser reads HTML documents and displays
them as web pages.
 The browser does not display the HTML tags, but
uses the tags to interpret the content of the page.
HTML
 HTML elements form the building blocks of all
websites.
 HTML allows images and objects to be embedded
and can be used to create interactive forms.
HTML
 It provides a means to create structured documents by
denoting structural semantics for text such as
headings, paragraphs, lists, links, quoted and other
items.
 It can embed scripts in languages such as JavaScript
which affect the behavior of HTMl WebPages.
HTML
 HTML can also be used to include Cascading Style
Sheets (CSS) to define the appearance and layout of
text and other material.
HTML
Example
<html>
<head>
<title>Hello HTML</title>
</head>
<body>
<p>Hello World! </p>
</body>
</html>
HTML
 The text between <html> and </html> describes the
web page, and The text between <body> and </body>
is the visible page content.
HTML
HTML documents are composed entirely of HTML
elements that, in their most general form have three
components:
• A pair of element tags, a “start tag” and “end tag”;
• Some element attributes within the start tag;
HTML Elements
HTML element
• Any textual and graphical content between the start
and end tags.
• The HTML element is everything between and
including the tags. Each tag is enclosed in angle
brackets.
• The general form of an HTML element is therefore:
• <tag attribute1=”value1”attribute2=”value2”>
• Content to be rendered
• </tag>
• The name of the HTML element is also the name of
the tag. The end tag’s name is preceded by a slash
character,”/”.
HTML element
Header of the HTML document:
<head>….</head>.Usually the title should be
included in the head, for example:
• <head>
• <title>Home Page of Yahoo<//title>
• </head>
Element examples
Headings:
HTML headings are defined with the <h1>
to <h6>tags:<h1>Heading1</h1>
• <h2>Heading2</h2>
• <h3>Heading3</h3>
• <h4>Heading4</h4>
• <h5>Heading5</h5>
• <h6>Heading6</h6>
Element examples
Paragraphs :
<p>Paragraph 1</p>
Line breaks:
<br>.
<p>This <br> is a paragraph <br> line
breaks</p>
Element examples
Comments:
<!—Explanation here
Comments can help understanding of the markup
and do not display in the webpage.
Element examples
There are three types of markup elements used in
HTML.
• Structural markup describes the purpose of text. For
example, <h2>Golf</h2> establishes “Golf” as a
second level heading
Element examples
• Presentational markup describes the appearance of
the text, regardless of its purpose.
• For example <b>boldface</b> indicates that visual
output devices should render “boldface” in bold text.
• Hypertext markup makes parts of a document into
links to other documents. An anchor element
Element examples
• Creates a hyperlink in the document with the href
attribute set to the link URL.
For example, the HTML markup,
• <a href=http://en.wikipedia.org/”> Wikipedia</a>
Element examples
• Will render the word “Wikipedia” as a hyperlink. To
render an image as a hyperlink, an ‘img’ element is
inserted as content into the ‘a’ element.
<a href=http://example.org>
<img src=”india.gif” width=”50”
height=”50”>
</a>.
Element examples
HTML - R.D.sivakumar

More Related Content

What's hot

WEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLWEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLSneha Mukherjee
 
Html 5
Html 5Html 5
How to make Html
How to make HtmlHow to make Html
How to make Html
Meghal Murkute
 
Html tag html 10 x10 wen liu art 2830
Html tag html 10 x10 wen liu art 2830Html tag html 10 x10 wen liu art 2830
Html tag html 10 x10 wen liu art 2830Wen Liu
 
Html training part1
Html training part1Html training part1
Html training part1
than sare
 
Creating your 1st html page
Creating your 1st html pageCreating your 1st html page
Creating your 1st html page
Sara Corpuz
 
Html mod1
Html mod1Html mod1
Html mod1
VARSHAKUMARI49
 
Web Fundamentals And Html Chapter 1
Web Fundamentals And Html Chapter 1Web Fundamentals And Html Chapter 1
Web Fundamentals And Html Chapter 1raileeanne
 
Html
HtmlHtml
Css mod1
Css mod1Css mod1
Css mod1
VARSHAKUMARI49
 
Html tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.comHtml tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.com
ShwetaAggarwal56
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambala
jatin batra
 
Crash Course Web - HTML Presentation
Crash Course Web - HTML PresentationCrash Course Web - HTML Presentation
Crash Course Web - HTML Presentation
John Paul Ada
 
Html presentation
Html presentationHtml presentation
Html presentation
Prashanthi Mamidisetty
 
Heading Section in HTML - R.D.Sivakumar
Heading Section in HTML - R.D.SivakumarHeading Section in HTML - R.D.Sivakumar
Heading Section in HTML - R.D.Sivakumar
Sivakumar R D .
 
Html (hypertext markup language)
Html (hypertext markup language)Html (hypertext markup language)
Html (hypertext markup language)
Anuj Singh Rajput
 
[Basic HTML/CSS] 0. introduction
[Basic HTML/CSS] 0. introduction[Basic HTML/CSS] 0. introduction
[Basic HTML/CSS] 0. introduction
Hyejin Oh
 

What's hot (20)

WEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLWEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTML
 
Html
HtmlHtml
Html
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
Html 5
Html 5Html 5
Html 5
 
How to make Html
How to make HtmlHow to make Html
How to make Html
 
Html tag html 10 x10 wen liu art 2830
Html tag html 10 x10 wen liu art 2830Html tag html 10 x10 wen liu art 2830
Html tag html 10 x10 wen liu art 2830
 
Html training part1
Html training part1Html training part1
Html training part1
 
Creating your 1st html page
Creating your 1st html pageCreating your 1st html page
Creating your 1st html page
 
Html mod1
Html mod1Html mod1
Html mod1
 
Web Fundamentals And Html Chapter 1
Web Fundamentals And Html Chapter 1Web Fundamentals And Html Chapter 1
Web Fundamentals And Html Chapter 1
 
Html
HtmlHtml
Html
 
Css mod1
Css mod1Css mod1
Css mod1
 
Html tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.comHtml tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.com
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambala
 
Crash Course Web - HTML Presentation
Crash Course Web - HTML PresentationCrash Course Web - HTML Presentation
Crash Course Web - HTML Presentation
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Web Designing
Web DesigningWeb Designing
Web Designing
 
Heading Section in HTML - R.D.Sivakumar
Heading Section in HTML - R.D.SivakumarHeading Section in HTML - R.D.Sivakumar
Heading Section in HTML - R.D.Sivakumar
 
Html (hypertext markup language)
Html (hypertext markup language)Html (hypertext markup language)
Html (hypertext markup language)
 
[Basic HTML/CSS] 0. introduction
[Basic HTML/CSS] 0. introduction[Basic HTML/CSS] 0. introduction
[Basic HTML/CSS] 0. introduction
 

Viewers also liked

The Services I offer and the target audience I serve.
The Services I offer and the target audience I serve.The Services I offer and the target audience I serve.
The Services I offer and the target audience I serve.
ActionCOACH Global
 
Snagit - R.D.Sivakumar
Snagit - R.D.SivakumarSnagit - R.D.Sivakumar
Snagit - R.D.Sivakumar
Sivakumar R D .
 
memahami frekuensi
memahami frekuensimemahami frekuensi
memahami frekuensi
eno caknow
 
Gebeurtenis
GebeurtenisGebeurtenis
Gebeurtenis
Jarrit Thys
 
Coaching Clinic Tahap ke -2 Regular Football di Lapangan Cakung, Jakarta Timur
Coaching Clinic Tahap ke -2 Regular Football di Lapangan Cakung, Jakarta TimurCoaching Clinic Tahap ke -2 Regular Football di Lapangan Cakung, Jakarta Timur
Coaching Clinic Tahap ke -2 Regular Football di Lapangan Cakung, Jakarta Timur
Uni Papua Football
 
2015 job description
2015 job description2015 job description
2015 job descriptionJUDY LARSEN
 
Sandeep Kumar Soni
Sandeep Kumar SoniSandeep Kumar Soni
Sandeep Kumar SoniSandeep Soni
 
Exodus plastics business overview
Exodus plastics business overviewExodus plastics business overview
Exodus plastics business overview
Exodus Plastics
 
Media record labels
Media   record labelsMedia   record labels
Media record labels
rumana3
 
Leo meeting
Leo meetingLeo meeting
Leo meeting
byrnecreekleoclub
 
Guide to home security in kenya
Guide to home security in kenyaGuide to home security in kenya
Guide to home security in kenya
Ndaiga Ngatia
 
Pollution
PollutionPollution
Regulatory reform in the telecommunication industry in spain
Regulatory reform in the telecommunication industry in spainRegulatory reform in the telecommunication industry in spain
Regulatory reform in the telecommunication industry in spain
CMR WORLD TECH
 
Решения для разумной оптимизации ИТ-инфраструктуры. Сокращение ваших расходов...
Решения для разумной оптимизации ИТ-инфраструктуры. Сокращение ваших расходов...Решения для разумной оптимизации ИТ-инфраструктуры. Сокращение ваших расходов...
Решения для разумной оптимизации ИТ-инфраструктуры. Сокращение ваших расходов...
Yaryomenko
 

Viewers also liked (16)

The Services I offer and the target audience I serve.
The Services I offer and the target audience I serve.The Services I offer and the target audience I serve.
The Services I offer and the target audience I serve.
 
Snagit - R.D.Sivakumar
Snagit - R.D.SivakumarSnagit - R.D.Sivakumar
Snagit - R.D.Sivakumar
 
memahami frekuensi
memahami frekuensimemahami frekuensi
memahami frekuensi
 
Gebeurtenis
GebeurtenisGebeurtenis
Gebeurtenis
 
Coaching Clinic Tahap ke -2 Regular Football di Lapangan Cakung, Jakarta Timur
Coaching Clinic Tahap ke -2 Regular Football di Lapangan Cakung, Jakarta TimurCoaching Clinic Tahap ke -2 Regular Football di Lapangan Cakung, Jakarta Timur
Coaching Clinic Tahap ke -2 Regular Football di Lapangan Cakung, Jakarta Timur
 
2015 job description
2015 job description2015 job description
2015 job description
 
TAX10 Chapter-11_Croatia
TAX10 Chapter-11_CroatiaTAX10 Chapter-11_Croatia
TAX10 Chapter-11_Croatia
 
Sandeep Kumar Soni
Sandeep Kumar SoniSandeep Kumar Soni
Sandeep Kumar Soni
 
Exodus plastics business overview
Exodus plastics business overviewExodus plastics business overview
Exodus plastics business overview
 
Media record labels
Media   record labelsMedia   record labels
Media record labels
 
Intermediate
IntermediateIntermediate
Intermediate
 
Leo meeting
Leo meetingLeo meeting
Leo meeting
 
Guide to home security in kenya
Guide to home security in kenyaGuide to home security in kenya
Guide to home security in kenya
 
Pollution
PollutionPollution
Pollution
 
Regulatory reform in the telecommunication industry in spain
Regulatory reform in the telecommunication industry in spainRegulatory reform in the telecommunication industry in spain
Regulatory reform in the telecommunication industry in spain
 
Решения для разумной оптимизации ИТ-инфраструктуры. Сокращение ваших расходов...
Решения для разумной оптимизации ИТ-инфраструктуры. Сокращение ваших расходов...Решения для разумной оптимизации ИТ-инфраструктуры. Сокращение ваших расходов...
Решения для разумной оптимизации ИТ-инфраструктуры. Сокращение ваших расходов...
 

Similar to HTML - R.D.sivakumar

HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
vaseemshaik21
 
Html
HtmlHtml
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Ajay Khatri
 
Learning html. (Part- 1)
Learning html. (Part- 1)Learning html. (Part- 1)
Learning html. (Part- 1)
manya abrol
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
NAGARAJU MAMILLAPALLY
 
Html
HtmlHtml
SEO Training in Noida- Skyinfotech.in
SEO Training in Noida- Skyinfotech.inSEO Training in Noida- Skyinfotech.in
SEO Training in Noida- Skyinfotech.in
Sky Infotech
 
Basic Html Knowledge for students
Basic Html Knowledge for studentsBasic Html Knowledge for students
Basic Html Knowledge for students
vethics
 
3 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp023 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp02
Aditya Varma
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
xu fag
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
Nikita Garg
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
Aiman Hud
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
Minea Chem
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
vardanyan99
 
Grade 10 COMPUTER
Grade 10 COMPUTERGrade 10 COMPUTER
Grade 10 COMPUTER
Joel Linquico
 
Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3
bluejayjunior
 
HTML.pdf
HTML.pdfHTML.pdf
HTML.pdf
aneebkmct
 

Similar to HTML - R.D.sivakumar (20)

HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
Html
HtmlHtml
Html
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Learning html. (Part- 1)
Learning html. (Part- 1)Learning html. (Part- 1)
Learning html. (Part- 1)
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
 
Html
HtmlHtml
Html
 
SEO Training in Noida- Skyinfotech.in
SEO Training in Noida- Skyinfotech.inSEO Training in Noida- Skyinfotech.in
SEO Training in Noida- Skyinfotech.in
 
Basic Html Knowledge for students
Basic Html Knowledge for studentsBasic Html Knowledge for students
Basic Html Knowledge for students
 
HTML/HTML5
HTML/HTML5HTML/HTML5
HTML/HTML5
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
3 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp023 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp02
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
Grade 10 COMPUTER
Grade 10 COMPUTERGrade 10 COMPUTER
Grade 10 COMPUTER
 
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
 
HTML.pdf
HTML.pdfHTML.pdf
HTML.pdf
 

More from Sivakumar R D .

Internet Connections and Its Protocols - R D Sivakumar
Internet Connections and Its Protocols - R D SivakumarInternet Connections and Its Protocols - R D Sivakumar
Internet Connections and Its Protocols - R D Sivakumar
Sivakumar R D .
 
Internet - R D Sivakumar.
Internet - R D Sivakumar.Internet - R D Sivakumar.
Internet - R D Sivakumar.
Sivakumar R D .
 
Data Communication - R D Sivakumar
Data Communication - R D SivakumarData Communication - R D Sivakumar
Data Communication - R D Sivakumar
Sivakumar R D .
 
NETWORK SERVICES - R D Sivakumar
NETWORK SERVICES - R D SivakumarNETWORK SERVICES - R D Sivakumar
NETWORK SERVICES - R D Sivakumar
Sivakumar R D .
 
Computer Communications - R D Sivakumar
Computer Communications - R D SivakumarComputer Communications - R D Sivakumar
Computer Communications - R D Sivakumar
Sivakumar R D .
 
Online Data Protection - R D Sivakumar
Online Data Protection - R D SivakumarOnline Data Protection - R D Sivakumar
Online Data Protection - R D Sivakumar
Sivakumar R D .
 
Software Engineering - R.D.Sivakumar
Software Engineering - R.D.SivakumarSoftware Engineering - R.D.Sivakumar
Software Engineering - R.D.Sivakumar
Sivakumar R D .
 
Different Kinds of Internet Protocols - R.D.Sivakumar
Different Kinds of Internet Protocols - R.D.SivakumarDifferent Kinds of Internet Protocols - R.D.Sivakumar
Different Kinds of Internet Protocols - R.D.Sivakumar
Sivakumar R D .
 
Internet - R.D.Sivakumar
Internet - R.D.SivakumarInternet - R.D.Sivakumar
Internet - R.D.Sivakumar
Sivakumar R D .
 
Electronic Publishing Tools for E-Learning - R.D.Sivakumar
Electronic Publishing Tools for E-Learning - R.D.SivakumarElectronic Publishing Tools for E-Learning - R.D.Sivakumar
Electronic Publishing Tools for E-Learning - R.D.Sivakumar
Sivakumar R D .
 
E-learning Packages - R.D.Sivakumar
E-learning Packages - R.D.SivakumarE-learning Packages - R.D.Sivakumar
E-learning Packages - R.D.Sivakumar
Sivakumar R D .
 
Digital Communication - R.D.Sivakumar
Digital Communication - R.D.SivakumarDigital Communication - R.D.Sivakumar
Digital Communication - R.D.Sivakumar
Sivakumar R D .
 
Digigogy in Teaching - R.D.Sivakumar
Digigogy in Teaching - R.D.SivakumarDigigogy in Teaching - R.D.Sivakumar
Digigogy in Teaching - R.D.Sivakumar
Sivakumar R D .
 
Cyber Commerce Technology - R.D.Sivakumar
Cyber Commerce Technology - R.D.SivakumarCyber Commerce Technology - R.D.Sivakumar
Cyber Commerce Technology - R.D.Sivakumar
Sivakumar R D .
 
Video Lesson Creation - R.D.Sivakumar
Video Lesson Creation - R.D.SivakumarVideo Lesson Creation - R.D.Sivakumar
Video Lesson Creation - R.D.Sivakumar
Sivakumar R D .
 
Cognitive and Personal Dimensions of Cyber Learning - R.D.Sivakumar
Cognitive and Personal Dimensions of Cyber Learning - R.D.SivakumarCognitive and Personal Dimensions of Cyber Learning - R.D.Sivakumar
Cognitive and Personal Dimensions of Cyber Learning - R.D.Sivakumar
Sivakumar R D .
 
Innovative Presentation - R.D.Sivakumar
Innovative Presentation - R.D.SivakumarInnovative Presentation - R.D.Sivakumar
Innovative Presentation - R.D.Sivakumar
Sivakumar R D .
 
Open Source in E-Learning - R.D.Sivakumar
Open Source in E-Learning - R.D.SivakumarOpen Source in E-Learning - R.D.Sivakumar
Open Source in E-Learning - R.D.Sivakumar
Sivakumar R D .
 
Tuxpaint - R.D.Sivakumar
Tuxpaint - R.D.SivakumarTuxpaint - R.D.Sivakumar
Tuxpaint - R.D.Sivakumar
Sivakumar R D .
 
Academic Blog Design - R.D.Sivakumar
Academic Blog Design - R.D.SivakumarAcademic Blog Design - R.D.Sivakumar
Academic Blog Design - R.D.Sivakumar
Sivakumar R D .
 

More from Sivakumar R D . (20)

Internet Connections and Its Protocols - R D Sivakumar
Internet Connections and Its Protocols - R D SivakumarInternet Connections and Its Protocols - R D Sivakumar
Internet Connections and Its Protocols - R D Sivakumar
 
Internet - R D Sivakumar.
Internet - R D Sivakumar.Internet - R D Sivakumar.
Internet - R D Sivakumar.
 
Data Communication - R D Sivakumar
Data Communication - R D SivakumarData Communication - R D Sivakumar
Data Communication - R D Sivakumar
 
NETWORK SERVICES - R D Sivakumar
NETWORK SERVICES - R D SivakumarNETWORK SERVICES - R D Sivakumar
NETWORK SERVICES - R D Sivakumar
 
Computer Communications - R D Sivakumar
Computer Communications - R D SivakumarComputer Communications - R D Sivakumar
Computer Communications - R D Sivakumar
 
Online Data Protection - R D Sivakumar
Online Data Protection - R D SivakumarOnline Data Protection - R D Sivakumar
Online Data Protection - R D Sivakumar
 
Software Engineering - R.D.Sivakumar
Software Engineering - R.D.SivakumarSoftware Engineering - R.D.Sivakumar
Software Engineering - R.D.Sivakumar
 
Different Kinds of Internet Protocols - R.D.Sivakumar
Different Kinds of Internet Protocols - R.D.SivakumarDifferent Kinds of Internet Protocols - R.D.Sivakumar
Different Kinds of Internet Protocols - R.D.Sivakumar
 
Internet - R.D.Sivakumar
Internet - R.D.SivakumarInternet - R.D.Sivakumar
Internet - R.D.Sivakumar
 
Electronic Publishing Tools for E-Learning - R.D.Sivakumar
Electronic Publishing Tools for E-Learning - R.D.SivakumarElectronic Publishing Tools for E-Learning - R.D.Sivakumar
Electronic Publishing Tools for E-Learning - R.D.Sivakumar
 
E-learning Packages - R.D.Sivakumar
E-learning Packages - R.D.SivakumarE-learning Packages - R.D.Sivakumar
E-learning Packages - R.D.Sivakumar
 
Digital Communication - R.D.Sivakumar
Digital Communication - R.D.SivakumarDigital Communication - R.D.Sivakumar
Digital Communication - R.D.Sivakumar
 
Digigogy in Teaching - R.D.Sivakumar
Digigogy in Teaching - R.D.SivakumarDigigogy in Teaching - R.D.Sivakumar
Digigogy in Teaching - R.D.Sivakumar
 
Cyber Commerce Technology - R.D.Sivakumar
Cyber Commerce Technology - R.D.SivakumarCyber Commerce Technology - R.D.Sivakumar
Cyber Commerce Technology - R.D.Sivakumar
 
Video Lesson Creation - R.D.Sivakumar
Video Lesson Creation - R.D.SivakumarVideo Lesson Creation - R.D.Sivakumar
Video Lesson Creation - R.D.Sivakumar
 
Cognitive and Personal Dimensions of Cyber Learning - R.D.Sivakumar
Cognitive and Personal Dimensions of Cyber Learning - R.D.SivakumarCognitive and Personal Dimensions of Cyber Learning - R.D.Sivakumar
Cognitive and Personal Dimensions of Cyber Learning - R.D.Sivakumar
 
Innovative Presentation - R.D.Sivakumar
Innovative Presentation - R.D.SivakumarInnovative Presentation - R.D.Sivakumar
Innovative Presentation - R.D.Sivakumar
 
Open Source in E-Learning - R.D.Sivakumar
Open Source in E-Learning - R.D.SivakumarOpen Source in E-Learning - R.D.Sivakumar
Open Source in E-Learning - R.D.Sivakumar
 
Tuxpaint - R.D.Sivakumar
Tuxpaint - R.D.SivakumarTuxpaint - R.D.Sivakumar
Tuxpaint - R.D.Sivakumar
 
Academic Blog Design - R.D.Sivakumar
Academic Blog Design - R.D.SivakumarAcademic Blog Design - R.D.Sivakumar
Academic Blog Design - R.D.Sivakumar
 

Recently uploaded

Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
PedroFerreira53928
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
PedroFerreira53928
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
rosedainty
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
bennyroshan06
 

Recently uploaded (20)

Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 

HTML - R.D.sivakumar

  • 1. HTML AUTHOR R.D.SIVAKUMAR,M.Sc.,M.Phil.,M.Tech., Assistant Professor of Computer Science & Assistant Professor and Head, Department of M.Com.(CA), Ayya Nadar Janaki Ammal College, Sivakasi – 626 124. Mobile: 099440-42243 e-mail : sivamsccsit@gmail.com website: www.rdsivakumar.blogspot.in CO-AUTHOR K.SIVAKAMI, B.Com. (CA) Student of M.Com. (CA) Ayya Nadar Janaki Ammal College, Sivakasi – 626 124.
  • 2. HTML  HTML, which stands for Hyper Text Markup Language, is the markup language for web pages.  A markup language is a set of markup tags. HTML uses markup tags to describe web pages.
  • 3. HTML  HTML is written in the form of HTML elements consisting of “tags” surrounded by angle brackets (like<html>)within the web page content.
  • 4.  HTML tags normally come in pairs like<b> and </b>.  The first tag in a pair is the start tag, the second tag is the end tag They are also called opening tags and closing tags. HTML
  • 5.  A web browser reads HTML documents and displays them as web pages.  The browser does not display the HTML tags, but uses the tags to interpret the content of the page. HTML
  • 6.  HTML elements form the building blocks of all websites.  HTML allows images and objects to be embedded and can be used to create interactive forms. HTML
  • 7.  It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quoted and other items.  It can embed scripts in languages such as JavaScript which affect the behavior of HTMl WebPages. HTML
  • 8.  HTML can also be used to include Cascading Style Sheets (CSS) to define the appearance and layout of text and other material. HTML
  • 10.  The text between <html> and </html> describes the web page, and The text between <body> and </body> is the visible page content. HTML
  • 11. HTML documents are composed entirely of HTML elements that, in their most general form have three components: • A pair of element tags, a “start tag” and “end tag”; • Some element attributes within the start tag; HTML Elements
  • 12. HTML element • Any textual and graphical content between the start and end tags. • The HTML element is everything between and including the tags. Each tag is enclosed in angle brackets. • The general form of an HTML element is therefore:
  • 13. • <tag attribute1=”value1”attribute2=”value2”> • Content to be rendered • </tag> • The name of the HTML element is also the name of the tag. The end tag’s name is preceded by a slash character,”/”. HTML element
  • 14. Header of the HTML document: <head>….</head>.Usually the title should be included in the head, for example: • <head> • <title>Home Page of Yahoo<//title> • </head> Element examples
  • 15. Headings: HTML headings are defined with the <h1> to <h6>tags:<h1>Heading1</h1> • <h2>Heading2</h2> • <h3>Heading3</h3> • <h4>Heading4</h4> • <h5>Heading5</h5> • <h6>Heading6</h6> Element examples
  • 16. Paragraphs : <p>Paragraph 1</p> Line breaks: <br>. <p>This <br> is a paragraph <br> line breaks</p> Element examples
  • 17. Comments: <!—Explanation here Comments can help understanding of the markup and do not display in the webpage. Element examples
  • 18. There are three types of markup elements used in HTML. • Structural markup describes the purpose of text. For example, <h2>Golf</h2> establishes “Golf” as a second level heading Element examples
  • 19. • Presentational markup describes the appearance of the text, regardless of its purpose. • For example <b>boldface</b> indicates that visual output devices should render “boldface” in bold text. • Hypertext markup makes parts of a document into links to other documents. An anchor element Element examples
  • 20. • Creates a hyperlink in the document with the href attribute set to the link URL. For example, the HTML markup, • <a href=http://en.wikipedia.org/”> Wikipedia</a> Element examples
  • 21. • Will render the word “Wikipedia” as a hyperlink. To render an image as a hyperlink, an ‘img’ element is inserted as content into the ‘a’ element. <a href=http://example.org> <img src=”india.gif” width=”50” height=”50”> </a>. Element examples