SlideShare a Scribd company logo
1 of 25
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
BATRA COMPUTER CENTRE
ISO CERTIFIED 9001:2008
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
HTML is the standard markup language for creating Web
pages.
 HTML stands for Hyper Text Markup Language
 HTML describes the structure of Web pages using markup
 HTML elements are the building blocks of HTML pages
 HTML elements are represented by tags
 HTML tags label pieces of content such as "heading", "paragraph",
"table", and so on
 Browsers do not display the HTML tags, but use them to render
the content of the page
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Below is an example of HTML used to define a
basic webpage with a title and a single paragraph
of text.
<!doctype html>
<html>
<head>
<title>TechTerms.com</title>
</head>
<body>
<p>This is an example of a paragraph in HTML.</p>
</body>
</html>
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
•The <!DOCTYPE html> declaration defines this document to
be HTML5
•The <html> element is the root element of an HTML page
•The <head> element contains meta information about the
document
•The <title> element specifies a title for the document
•The <body> element contains the visible page content
•The <h1> element defines a large heading
•The <p> element defines a paragraph
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
HTML tags are element names surrounded by angle brackets:
<tagname>content goes here...</tagname>
 HTML tags normally come in pairs like <p> and </p>
 The first tag in a pair is the start tag, the second tag is the end
tag
 The end tag is written like the start tag, but with a forward
slash inserted before the tag name
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
 HTML headings are defined with the <h1> to <h6> tags.
 <h1> defines the most important heading. <h6> defines the
least important heading
EXAMPLE:--
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
 HTML paragraphs are defined with the <p> tag:
EXAMPLE:--
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
The link's destination is specified in the href attribute.
Attributes are used to provide additional information about
HTML elements.
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
 HTML links are defined with the <a> tag:
EXAMPLE:--
<a href="https://www.w3schools.com">This is a
link</a>
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
EXAMPLE:--
<img src="w3schools.jpg" alt="W3Schools.com" width
="104" height="142">
 HTML images are defined with the <img> tag.
 The source file (src), alternative text (alt), width, and height
are provided as attributes:
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <!--...--> Defines a comment
 <!DOCTYPE> Defines the document type
 <a> Defines a hyperlink
 <abbr> Defines an abbreviation or an acronym
 <acronym> Not supported in HTML5. Use <abbr>
instead.
Defines an acronym
 <address> Defines contact information for the
author/owner of a document
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <applet> Not supported in HTML5. Use
<embed> or <object> instead.
Defines an embedded applet
 <area> Defines an area inside an image-
 <article> Defines an article
 <aside> Defines content aside from the page
content
 <audio> Defines sound content
 <b> Defines bold text
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <base> Specifies the base URL/target for all
relative URLs in a document
 <basefont> Not supported in HTML5. Use CSS instead.
Specifies a default color, size, and font for all
text in a document
 <bdi> Isolates a part of text that might be formatted
in a different direction from other text outside
it
 <bdo> Overrides the current text direction
 <big> Not supported in HTML5. Use CSS instead.
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <blockquote> Defines a section that is quoted from another
source
 <body> Defines the document's body
 <br> Defines a single line break
 <button> Defines a clickable button
 <caption> Defines a table caption.
 <code> Defines a piece of computer code
 <dd> Defines a description/value of a term in a
description list
 <del> Defines text that has been deleted from a
document
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <details> Defines additional details that the user can view
or hide
 <dfn> Represents the defining instance of a term
 <dialog> Defines a dialog box or window
 <div> Defines a section in a document
 <dl> Defines a description list
 <dt> Defines a term/name in a description list
 <em> Defines emphasized text
 <font> Defines font, color, and size for text
 <footer> Defines a footer for a document or section
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <form> Defines an HTML form for user input
 <header> Defines a header for a document or section
 <hr> Defines a thematic change in the content
 <i> Defines a part of text in an alternate voice or
mood
 <ins> Defines a text that has been inserted into a
document
 <li> Defines a list item
 <mark> Defines marked/highlighted text
 <ol> Defines an ordered list
 <pre> Defines preformatted text
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <q> Defines a short quotation
 <script> Defines a client-side script
 <section> Defines a section in a document
 <select> Defines a drop-down list
 <small> Defines smaller text
 <source> Defines multiple media resources for media
elements (<video> and <audio>)
 <span> Defines a section in a document
 <strong> Defines important text
 <style> Defines style information for a document
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <sub> Defines subscripted text
 <summary> Defines a visible heading for a <details>
element
 <sup> Defines superscripted text
 <table> Defines a table
 <tbody> Groups the body content in a table
 <time> Defines a date/time
 <title> Defines a title for the document
 <tr> Defines a row in a table
 <track> Defines text tracks for media elements
(<video> and <audio>)
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Tag Description
 <u> Defines text that should be stylistically
different from normal text
 <ul> Defines an unordered list
 <var> Defines a variable
 <vedio> Defines a video or movie
 <wbr> Defines a possible line-break
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Attributes provide additional information about
HTML elements.
 All HTML elements can have attributes
 Attributes provide additional information about an
element
 Attributes are always specified in the start tag
 Attributes usually come in name/value pairs
like: name="value"
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Version Year
HTML 1991
HTML 2.0 1995
HTML 3.2 1997
HTML 4.01 1999
XHTML 2000
HTML5 2014
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com
ADDRESS:
SCO -15, Dayal Bagh,
Near Hanuman Mandir
Ambala Cantt-13300, Haryana
Ph. No.: 9729666670, 8222066670 &0171-4000670
Email ID: info.jatinbatra@gmail.com
Website: www.batracomputercentre.com
Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670
Email: info.jatinbatra@gmail.com

More Related Content

What's hot (19)

Html
HtmlHtml
Html
 
HTML or Hypertext Markup Language
HTML or Hypertext Markup LanguageHTML or Hypertext Markup Language
HTML or Hypertext Markup Language
 
Practical file on web technology(html)
Practical file on web technology(html)Practical file on web technology(html)
Practical file on web technology(html)
 
HTML
HTMLHTML
HTML
 
HTML guide for beginners
HTML guide for beginnersHTML guide for beginners
HTML guide for beginners
 
Learn HTML Step By Step
Learn HTML Step By StepLearn HTML Step By Step
Learn HTML Step By Step
 
Html tags
Html tagsHtml tags
Html tags
 
Mengelola isi halaman web1 eng
Mengelola isi halaman web1 engMengelola isi halaman web1 eng
Mengelola isi halaman web1 eng
 
Html basics
Html basicsHtml basics
Html basics
 
Html basics NOTE
Html basics NOTEHtml basics NOTE
Html basics NOTE
 
HTML
HTMLHTML
HTML
 
Html basic
Html basicHtml basic
Html basic
 
Html example
Html exampleHtml example
Html example
 
Html
HtmlHtml
Html
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
Web Application and HTML Summary
Web Application and HTML SummaryWeb Application and HTML Summary
Web Application and HTML Summary
 
CSS Training Institute in Ambala ! Batra Computer Centre
CSS Training Institute in Ambala ! Batra Computer CentreCSS Training Institute in Ambala ! Batra Computer Centre
CSS Training Institute in Ambala ! Batra Computer Centre
 
Html
HtmlHtml
Html
 
Html viva questions
Html viva questionsHtml viva questions
Html viva questions
 

Viewers also liked

HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsSun Technlogies
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginnersjeroenvdmeer
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to htmlvikasgaur31
 
Aula01 Desenvolvimento em Ambiente Web - HTML
Aula01 Desenvolvimento em Ambiente Web - HTMLAula01 Desenvolvimento em Ambiente Web - HTML
Aula01 Desenvolvimento em Ambiente Web - HTMLMessias Batista
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTMLMayaLisa
 
HTML Training in Ambala ! Batra Computer Centre
HTML Training in Ambala ! Batra Computer CentreHTML Training in Ambala ! Batra Computer Centre
HTML Training in Ambala ! Batra Computer Centrejatin batra
 
Code This, Not That: 10 Do's and Don'ts For Learning HTML
Code This, Not That: 10 Do's and Don'ts For Learning HTMLCode This, Not That: 10 Do's and Don'ts For Learning HTML
Code This, Not That: 10 Do's and Don'ts For Learning HTMLHubSpot
 
Building on the Dane County Difference
Building on the Dane County DifferenceBuilding on the Dane County Difference
Building on the Dane County DifferenceJennifer Staebell
 
Better and Instant Healthcare - UAH smart e-clinic kiosk
Better and Instant  Healthcare - UAH smart e-clinic kiosk Better and Instant  Healthcare - UAH smart e-clinic kiosk
Better and Instant Healthcare - UAH smart e-clinic kiosk prabhumurthy maduraimuthu
 
[Basic HTML/CSS] 2. html - list tags
[Basic HTML/CSS] 2. html - list tags[Basic HTML/CSS] 2. html - list tags
[Basic HTML/CSS] 2. html - list tagsHyejin Oh
 
Html 4 01 Weekend Crash Course (2000) 0764547461
Html 4 01 Weekend Crash Course (2000)  0764547461Html 4 01 Weekend Crash Course (2000)  0764547461
Html 4 01 Weekend Crash Course (2000) 0764547461bhuvanann
 
Gogo Golden Globes 2010 !
Gogo Golden Globes 2010 !Gogo Golden Globes 2010 !
Gogo Golden Globes 2010 !GoGo squeeZ
 
Setting.pheriperall (materi tik)
Setting.pheriperall (materi tik)Setting.pheriperall (materi tik)
Setting.pheriperall (materi tik)robert junito
 
What Do Mommies Think of GoGo squeeZ ?
What Do Mommies Think of GoGo squeeZ ?What Do Mommies Think of GoGo squeeZ ?
What Do Mommies Think of GoGo squeeZ ?GoGo squeeZ
 
[Basic HTML/CSS] 1. html - basic tags
[Basic HTML/CSS] 1. html - basic tags[Basic HTML/CSS] 1. html - basic tags
[Basic HTML/CSS] 1. html - basic tagsHyejin Oh
 

Viewers also liked (20)

Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3
 
Html 2
Html 2Html 2
Html 2
 
Html
HtmlHtml
Html
 
HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Aula01 Desenvolvimento em Ambiente Web - HTML
Aula01 Desenvolvimento em Ambiente Web - HTMLAula01 Desenvolvimento em Ambiente Web - HTML
Aula01 Desenvolvimento em Ambiente Web - HTML
 
Html list
Html listHtml list
Html list
 
Html Ppt
Html PptHtml Ppt
Html Ppt
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
HTML Training in Ambala ! Batra Computer Centre
HTML Training in Ambala ! Batra Computer CentreHTML Training in Ambala ! Batra Computer Centre
HTML Training in Ambala ! Batra Computer Centre
 
Code This, Not That: 10 Do's and Don'ts For Learning HTML
Code This, Not That: 10 Do's and Don'ts For Learning HTMLCode This, Not That: 10 Do's and Don'ts For Learning HTML
Code This, Not That: 10 Do's and Don'ts For Learning HTML
 
Building on the Dane County Difference
Building on the Dane County DifferenceBuilding on the Dane County Difference
Building on the Dane County Difference
 
Better and Instant Healthcare - UAH smart e-clinic kiosk
Better and Instant  Healthcare - UAH smart e-clinic kiosk Better and Instant  Healthcare - UAH smart e-clinic kiosk
Better and Instant Healthcare - UAH smart e-clinic kiosk
 
[Basic HTML/CSS] 2. html - list tags
[Basic HTML/CSS] 2. html - list tags[Basic HTML/CSS] 2. html - list tags
[Basic HTML/CSS] 2. html - list tags
 
Html 4 01 Weekend Crash Course (2000) 0764547461
Html 4 01 Weekend Crash Course (2000)  0764547461Html 4 01 Weekend Crash Course (2000)  0764547461
Html 4 01 Weekend Crash Course (2000) 0764547461
 
Gogo Golden Globes 2010 !
Gogo Golden Globes 2010 !Gogo Golden Globes 2010 !
Gogo Golden Globes 2010 !
 
Setting.pheriperall (materi tik)
Setting.pheriperall (materi tik)Setting.pheriperall (materi tik)
Setting.pheriperall (materi tik)
 
What Do Mommies Think of GoGo squeeZ ?
What Do Mommies Think of GoGo squeeZ ?What Do Mommies Think of GoGo squeeZ ?
What Do Mommies Think of GoGo squeeZ ?
 
[Basic HTML/CSS] 1. html - basic tags
[Basic HTML/CSS] 1. html - basic tags[Basic HTML/CSS] 1. html - basic tags
[Basic HTML/CSS] 1. html - basic tags
 

Similar to Batra Computer Centre HTML Guide

HTML Training Centre in Ambala ! Batra Computer Cetre
HTML Training Centre in Ambala ! Batra Computer CetreHTML Training Centre in Ambala ! Batra Computer Cetre
HTML Training Centre in Ambala ! Batra Computer Cetrejatin batra
 
Html Training in Ambala ! Batra Computer Centre
Html Training in Ambala ! Batra Computer CentreHtml Training in Ambala ! Batra Computer Centre
Html Training in Ambala ! Batra Computer Centrejatin batra
 
HTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer CentreHTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer Centrejatin batra
 
Sybsc cs sem 3 Web Programming unit 1
Sybsc cs sem 3 Web Programming unit 1Sybsc cs sem 3 Web Programming unit 1
Sybsc cs sem 3 Web Programming unit 1WE-IT TUTORIALS
 
HTML Basics 1 workshop
HTML Basics 1 workshopHTML Basics 1 workshop
HTML Basics 1 workshopJohn Allan
 
HTML, CSS And JavaScript Training Institute in Ambala ! Batra Computer Centre
HTML, CSS And JavaScript Training Institute in Ambala ! Batra Computer CentreHTML, CSS And JavaScript Training Institute in Ambala ! Batra Computer Centre
HTML, CSS And JavaScript Training Institute in Ambala ! Batra Computer Centrejatin batra
 
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptxWeb_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptxgauravpurola
 
Presentation on HTML By Batra Computer Centre
Presentation on HTML By Batra Computer CentrePresentation on HTML By Batra Computer Centre
Presentation on HTML By Batra Computer CentreBatra Computer Centre
 
HTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer CentreHTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer Centrejatin batra
 
HTML web design_ an introduction to design
HTML web design_ an introduction to designHTML web design_ an introduction to design
HTML web design_ an introduction to designSureshSingh142
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basicsNikita Garg
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basicsxu fag
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAAiman Hud
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basicsMinea Chem
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvZahouAmel1
 

Similar to Batra Computer Centre HTML Guide (20)

HTML Training Centre in Ambala ! Batra Computer Cetre
HTML Training Centre in Ambala ! Batra Computer CetreHTML Training Centre in Ambala ! Batra Computer Cetre
HTML Training Centre in Ambala ! Batra Computer Cetre
 
Html Training in Ambala ! Batra Computer Centre
Html Training in Ambala ! Batra Computer CentreHtml Training in Ambala ! Batra Computer Centre
Html Training in Ambala ! Batra Computer Centre
 
HTML 4.0
HTML 4.0HTML 4.0
HTML 4.0
 
HTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer CentreHTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer Centre
 
Sybsc cs sem 3 Web Programming unit 1
Sybsc cs sem 3 Web Programming unit 1Sybsc cs sem 3 Web Programming unit 1
Sybsc cs sem 3 Web Programming unit 1
 
HTML Basics 1 workshop
HTML Basics 1 workshopHTML Basics 1 workshop
HTML Basics 1 workshop
 
HTML, CSS And JavaScript Training Institute in Ambala ! Batra Computer Centre
HTML, CSS And JavaScript Training Institute in Ambala ! Batra Computer CentreHTML, CSS And JavaScript Training Institute in Ambala ! Batra Computer Centre
HTML, CSS And JavaScript Training Institute in Ambala ! Batra Computer Centre
 
Web technology
Web technologyWeb technology
Web technology
 
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptxWeb_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
 
Presentation on HTML By Batra Computer Centre
Presentation on HTML By Batra Computer CentrePresentation on HTML By Batra Computer Centre
Presentation on HTML By Batra Computer Centre
 
HTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer CentreHTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer Centre
 
HTML web design_ an introduction to design
HTML web design_ an introduction to designHTML web design_ an introduction to design
HTML web design_ an introduction to design
 
html-tags.docx
html-tags.docxhtml-tags.docx
html-tags.docx
 
List of html tags
List of html tagsList of html tags
List of html tags
 
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
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
 
HTML - LinkedIn
HTML - LinkedInHTML - LinkedIn
HTML - LinkedIn
 

More from jatin batra

Best SMO Training &Coaching in Ambala
Best SMO Training &Coaching in AmbalaBest SMO Training &Coaching in Ambala
Best SMO Training &Coaching in Ambalajatin batra
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambalajatin batra
 
Best SEO Training & Coaching in Ambala
Best SEO Training & Coaching in AmbalaBest SEO Training & Coaching in Ambala
Best SEO Training & Coaching in Ambalajatin batra
 
Best Photoshop Training in Ambala
 Best Photoshop Training  in Ambala Best Photoshop Training  in Ambala
Best Photoshop Training in Ambalajatin batra
 
Best C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in AmbalaBest C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in Ambalajatin batra
 
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTBASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTjatin batra
 
Web Browser ! Batra Computer Centre
Web Browser ! Batra Computer CentreWeb Browser ! Batra Computer Centre
Web Browser ! Batra Computer Centrejatin batra
 
Search Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer CentreSearch Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer Centrejatin batra
 
Networking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer CentreNetworking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer Centrejatin batra
 
SQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRESQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Networking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRENetworking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTREjatin batra
 
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREMs Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREBasic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRECorel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREBasic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREjatin batra
 
Benefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer CentreBenefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer Centrejatin batra
 
SEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer CentreSEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer Centrejatin batra
 
Internet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer CentreInternet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer Centrejatin batra
 
Basic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer CentreBasic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer Centrejatin batra
 
Web Designing Training in Ambala ! Batra Computer Centre
Web Designing Training in Ambala ! Batra Computer CentreWeb Designing Training in Ambala ! Batra Computer Centre
Web Designing Training in Ambala ! Batra Computer Centrejatin batra
 

More from jatin batra (20)

Best SMO Training &Coaching in Ambala
Best SMO Training &Coaching in AmbalaBest SMO Training &Coaching in Ambala
Best SMO Training &Coaching in Ambala
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambala
 
Best SEO Training & Coaching in Ambala
Best SEO Training & Coaching in AmbalaBest SEO Training & Coaching in Ambala
Best SEO Training & Coaching in Ambala
 
Best Photoshop Training in Ambala
 Best Photoshop Training  in Ambala Best Photoshop Training  in Ambala
Best Photoshop Training in Ambala
 
Best C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in AmbalaBest C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in Ambala
 
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTBASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
 
Web Browser ! Batra Computer Centre
Web Browser ! Batra Computer CentreWeb Browser ! Batra Computer Centre
Web Browser ! Batra Computer Centre
 
Search Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer CentreSearch Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer Centre
 
Networking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer CentreNetworking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer Centre
 
SQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRESQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRE
 
Networking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRENetworking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRE
 
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREMs Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
 
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREBasic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
 
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRECorel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
 
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREBasic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
 
Benefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer CentreBenefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer Centre
 
SEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer CentreSEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer Centre
 
Internet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer CentreInternet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer Centre
 
Basic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer CentreBasic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer Centre
 
Web Designing Training in Ambala ! Batra Computer Centre
Web Designing Training in Ambala ! Batra Computer CentreWeb Designing Training in Ambala ! Batra Computer Centre
Web Designing Training in Ambala ! Batra Computer Centre
 

Recently uploaded

internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 

Recently uploaded (20)

Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 

Batra Computer Centre HTML Guide

  • 1. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com BATRA COMPUTER CENTRE ISO CERTIFIED 9001:2008
  • 2. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com HTML is the standard markup language for creating Web pages.  HTML stands for Hyper Text Markup Language  HTML describes the structure of Web pages using markup  HTML elements are the building blocks of HTML pages  HTML elements are represented by tags  HTML tags label pieces of content such as "heading", "paragraph", "table", and so on  Browsers do not display the HTML tags, but use them to render the content of the page
  • 3. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com
  • 4. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Below is an example of HTML used to define a basic webpage with a title and a single paragraph of text. <!doctype html> <html> <head> <title>TechTerms.com</title> </head> <body> <p>This is an example of a paragraph in HTML.</p> </body> </html>
  • 5. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com •The <!DOCTYPE html> declaration defines this document to be HTML5 •The <html> element is the root element of an HTML page •The <head> element contains meta information about the document •The <title> element specifies a title for the document •The <body> element contains the visible page content •The <h1> element defines a large heading •The <p> element defines a paragraph
  • 6. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com HTML tags are element names surrounded by angle brackets: <tagname>content goes here...</tagname>  HTML tags normally come in pairs like <p> and </p>  The first tag in a pair is the start tag, the second tag is the end tag  The end tag is written like the start tag, but with a forward slash inserted before the tag name
  • 7. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com
  • 8. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com  HTML headings are defined with the <h1> to <h6> tags.  <h1> defines the most important heading. <h6> defines the least important heading EXAMPLE:-- <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3>
  • 9. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com  HTML paragraphs are defined with the <p> tag: EXAMPLE:-- <p>This is a paragraph.</p> <p>This is another paragraph.</p> The link's destination is specified in the href attribute. Attributes are used to provide additional information about HTML elements.
  • 10. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com  HTML links are defined with the <a> tag: EXAMPLE:-- <a href="https://www.w3schools.com">This is a link</a>
  • 11. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com EXAMPLE:-- <img src="w3schools.jpg" alt="W3Schools.com" width ="104" height="142">  HTML images are defined with the <img> tag.  The source file (src), alternative text (alt), width, and height are provided as attributes:
  • 12. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <!--...--> Defines a comment  <!DOCTYPE> Defines the document type  <a> Defines a hyperlink  <abbr> Defines an abbreviation or an acronym  <acronym> Not supported in HTML5. Use <abbr> instead. Defines an acronym  <address> Defines contact information for the author/owner of a document
  • 13. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <applet> Not supported in HTML5. Use <embed> or <object> instead. Defines an embedded applet  <area> Defines an area inside an image-  <article> Defines an article  <aside> Defines content aside from the page content  <audio> Defines sound content  <b> Defines bold text
  • 14. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <base> Specifies the base URL/target for all relative URLs in a document  <basefont> Not supported in HTML5. Use CSS instead. Specifies a default color, size, and font for all text in a document  <bdi> Isolates a part of text that might be formatted in a different direction from other text outside it  <bdo> Overrides the current text direction  <big> Not supported in HTML5. Use CSS instead.
  • 15. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <blockquote> Defines a section that is quoted from another source  <body> Defines the document's body  <br> Defines a single line break  <button> Defines a clickable button  <caption> Defines a table caption.  <code> Defines a piece of computer code  <dd> Defines a description/value of a term in a description list  <del> Defines text that has been deleted from a document
  • 16. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <details> Defines additional details that the user can view or hide  <dfn> Represents the defining instance of a term  <dialog> Defines a dialog box or window  <div> Defines a section in a document  <dl> Defines a description list  <dt> Defines a term/name in a description list  <em> Defines emphasized text  <font> Defines font, color, and size for text  <footer> Defines a footer for a document or section
  • 17. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <form> Defines an HTML form for user input  <header> Defines a header for a document or section  <hr> Defines a thematic change in the content  <i> Defines a part of text in an alternate voice or mood  <ins> Defines a text that has been inserted into a document  <li> Defines a list item  <mark> Defines marked/highlighted text  <ol> Defines an ordered list  <pre> Defines preformatted text
  • 18. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <q> Defines a short quotation  <script> Defines a client-side script  <section> Defines a section in a document  <select> Defines a drop-down list  <small> Defines smaller text  <source> Defines multiple media resources for media elements (<video> and <audio>)  <span> Defines a section in a document  <strong> Defines important text  <style> Defines style information for a document
  • 19. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <sub> Defines subscripted text  <summary> Defines a visible heading for a <details> element  <sup> Defines superscripted text  <table> Defines a table  <tbody> Groups the body content in a table  <time> Defines a date/time  <title> Defines a title for the document  <tr> Defines a row in a table  <track> Defines text tracks for media elements (<video> and <audio>)
  • 20. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Tag Description  <u> Defines text that should be stylistically different from normal text  <ul> Defines an unordered list  <var> Defines a variable  <vedio> Defines a video or movie  <wbr> Defines a possible line-break
  • 21. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Attributes provide additional information about HTML elements.  All HTML elements can have attributes  Attributes provide additional information about an element  Attributes are always specified in the start tag  Attributes usually come in name/value pairs like: name="value"
  • 22. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com Version Year HTML 1991 HTML 2.0 1995 HTML 3.2 1997 HTML 4.01 1999 XHTML 2000 HTML5 2014
  • 23. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com
  • 24. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com ADDRESS: SCO -15, Dayal Bagh, Near Hanuman Mandir Ambala Cantt-13300, Haryana Ph. No.: 9729666670, 8222066670 &0171-4000670 Email ID: info.jatinbatra@gmail.com Website: www.batracomputercentre.com
  • 25. Website: www.batracomputercentre.comPh. No.: 8222066670, 4000670 Email: info.jatinbatra@gmail.com