SlideShare a Scribd company logo
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Content
What is HTML?
Why HTML?
HTML Structure
HTML Elements
HTML Attributes
Basic Tags
HTML Styles
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Text Formatting
HTML Quotation
HTML with CSS
HTML Links
What is HTML?
HTML is the standardmarkuplanguagefor creating Webpages.
 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
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
HTML Stands For…
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
HTML
Hyper Text Markup Language
Why HTML Is Used?
The web is based on HTML more
than anything else.
Anything written carefully in HTML
will wok on any browser or OS.
It is light inn weight and easy to
learn.
It is quick to code and compatible
with all the browser and OS.
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
HTML Structure
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<html>
</html>
<head>
</head>
<title>Page Title</title>
<body>
</body>
<p>This is a paragraph</p>
<h1>This is the heading</h1>
<p>This is another paragraph</p>
HTML ELEMENTS
An HTML element usually consists of a start tag and end tag, with the
content inserted in between:
<tagname>Content goes here...</tagname>
The HTML element is everything from the start tag to the end tag:
<p>Myfirst paragraph.</p>
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Start Tag Element Content End Tag
<h1> My first heading </h1>
<p> My first Paragraph </p>
<br>
HTML Attribute
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Attributes provide additional informationabout 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"
HTML Attributes
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Basic HTML Tags
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
HTML Styles
Setting the styleof an HTML element, can be done withthe style
attribute.
The property is a CSS property. The valueis a CSS value.
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<tagname style="property:value;">
 The background-color property defines the background color for an HTML
element.
 The color property defines the text color for an HTML element:
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<body style="background-color:powderblue;">
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
<h1 style="color:blue;">This is a heading</h1>
<p style="color:red;">This is a paragraph.</p>
Examples:-
 The font-family property defines the font to be used for an HTML element:
 The font-size property defines the text size for an HTML element:
 The text-alignproperty defines the horizontal text alignment for an HTML
element:
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<h1 style="text-align:center;">Centered Heading</h1>
<p style="text-align:center;">Centered paragraph.</p>
<h1 style="font-size:300%;">This is a heading</h1>
<p style="font-size:160%;">This is a paragraph.</p>
<h1 style="font-family:verdana;">This is a heading</h1>
<p style="font-family:courier;">This is a paragraph.</p>
Text Formatting
• HTML also defines special elements for defining text with a
special meaning.
• HTML uses elements like <b> and <i> for formatting output,
like bold or italic text.
• Formatting elements were designed to display special types of text:
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
HTML Quotation
• The HTML <q> element defines a short quotation.
• Browsers usually insert quotation marks around the <q> element.
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<p>WWF's goal is to: <q>Build a future
where people live in harmony with
nature.</q></p>
• The HTML <blockquote> element defines a section that is
quoted from another source.
• Browsers usually indent <blockquote> elements.
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<p>Here is a quote from WWF's website:</p>
<blockquote cite="http://www.worldwildlife.org/who/index.
html">
For 50 years, WWF has been protecting the future of nature.
The world's leading conservation organization,
WWF works in 100 countries and is supported by
1.2 million members in the United States and
close to 5 million globally.
</blockquote>
Styling HTML With CSS
• CSS stands for Cascading Style Sheets.
• CSS describes how HTML elements are to be displayedon screen, paper,
or in other media.
• CSS saves a lot of work. It can control the layout of multiple web pages
all at once.
• CSS can be added to HTML elements in 3 ways:
– Inline - by using the style attribute in HTML elements
– Internal - by using a <style> element in the <head> section
– External - by using an external CSS file
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
HTML Links - Hyperlinks
• HTML links are hyperlinks.
• You can click on a link and jump to another document.
• When you move the mouse over a link, the mouse arrow will
turn into a little hand.
Syntax:-
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<a href="url">link text</a>
Example
• The href attribute specifies the destination address
(https://www.google. com) of the link.
• Local Links:-
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<a href="https://www.google.com ">Visit our
HTML tutorial</a>
<a href="html_images.asp">HTML Images</a>
HTML Link – Image as a Link
It is common to use images as links:
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
<a href="default.asp">
<img src="smiley.gif" alt="HTML
tutorial" style="width:42px;height:42px;border:0;">
</a>
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
About Us
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
We have own Centre library that has sufficient books of great
authors for our students.
Notes prepared by our teachers
are provides to every student for
their review. We also provide
particular software’s our students
on which they are pursuing their courses. Extra classes are given to
those students who need some extra time or in case miss due to some
reason.
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
SCO 15, Dayal Bagh,
Near Hanuman Mandir,
Ambala Cantt.
Phn No.: 9729666670,0171-4000670
Email: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com
Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com

More Related Content

Similar to Presentation on HTML By Batra Computer Centre

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
jatin batra
 
6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre
jatin batra
 
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
jatin 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 Centre
jatin batra
 
Basic html structure
Basic html structureBasic html structure
Basic html structure
Jhaun Paul Enriquez
 
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
jatin batra
 
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
jatin 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 CENTRE
jatin batra
 
html
htmlhtml
html
tumetr1
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
vardanyan99
 
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
jatin batra
 
Html
HtmlHtml
BITM3730 9-12.pptx
BITM3730 9-12.pptxBITM3730 9-12.pptx
BITM3730 9-12.pptx
MattMarino13
 
Meta tag creation
Meta tag creationMeta tag creation
Meta tag creation
AniketTiwari26
 
Web Development Training in Ambala ! Batra Computer Centre
Web Development Training in Ambala ! Batra Computer CentreWeb Development Training in Ambala ! Batra Computer Centre
Web Development Training in Ambala ! Batra Computer Centre
jatin batra
 
Social Engine Optimization Training in Ambala ! Batra Computer Centre
Social Engine Optimization Training in Ambala ! Batra Computer CentreSocial Engine Optimization Training in Ambala ! Batra Computer Centre
Social Engine Optimization Training in Ambala ! Batra Computer Centre
jatin batra
 
10 Basic SEO Techniques Website Designers & Developers Should Know
10 Basic SEO Techniques Website Designers & Developers Should Know10 Basic SEO Techniques Website Designers & Developers Should Know
10 Basic SEO Techniques Website Designers & Developers Should Know
Daniel Bianchini
 
Lab1_HTML.pptx
Lab1_HTML.pptxLab1_HTML.pptx
Lab1_HTML.pptx
IslamGhonimi1
 
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
jatin batra
 
Web development Training in Ambala ! Batra Computer Centre
Web development Training in Ambala ! Batra Computer CentreWeb development Training in Ambala ! Batra Computer Centre
Web development Training in Ambala ! Batra Computer Centre
jatin batra
 

Similar to Presentation on HTML By Batra Computer Centre (20)

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
 
6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre
 
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 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
 
Basic html structure
Basic html structureBasic html structure
Basic html structure
 
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, 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
 
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
htmlhtml
html
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
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
HtmlHtml
Html
 
BITM3730 9-12.pptx
BITM3730 9-12.pptxBITM3730 9-12.pptx
BITM3730 9-12.pptx
 
Meta tag creation
Meta tag creationMeta tag creation
Meta tag creation
 
Web Development Training in Ambala ! Batra Computer Centre
Web Development Training in Ambala ! Batra Computer CentreWeb Development Training in Ambala ! Batra Computer Centre
Web Development Training in Ambala ! Batra Computer Centre
 
Social Engine Optimization Training in Ambala ! Batra Computer Centre
Social Engine Optimization Training in Ambala ! Batra Computer CentreSocial Engine Optimization Training in Ambala ! Batra Computer Centre
Social Engine Optimization Training in Ambala ! Batra Computer Centre
 
10 Basic SEO Techniques Website Designers & Developers Should Know
10 Basic SEO Techniques Website Designers & Developers Should Know10 Basic SEO Techniques Website Designers & Developers Should Know
10 Basic SEO Techniques Website Designers & Developers Should Know
 
Lab1_HTML.pptx
Lab1_HTML.pptxLab1_HTML.pptx
Lab1_HTML.pptx
 
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
 
Web development Training in Ambala ! Batra Computer Centre
Web development Training in Ambala ! Batra Computer CentreWeb development Training in Ambala ! Batra Computer Centre
Web development Training in Ambala ! Batra Computer Centre
 

More from Batra Computer Centre

Presentation on MS-Office
Presentation on MS-OfficePresentation on MS-Office
Presentation on MS-Office
Batra Computer Centre
 
Presentation on Job oriented
Presentation on Job orientedPresentation on Job oriented
Presentation on Job oriented
Batra Computer Centre
 
Presentation On Industrial Training
Presentation On Industrial TrainingPresentation On Industrial Training
Presentation On Industrial Training
Batra Computer Centre
 
Presentation On Internet
Presentation On InternetPresentation On Internet
Presentation On Internet
Batra Computer Centre
 
Presentation on Android
Presentation on AndroidPresentation on Android
Presentation on Android
Batra Computer Centre
 
Web browser(16 03-2018)
Web browser(16 03-2018)Web browser(16 03-2018)
Web browser(16 03-2018)
Batra Computer Centre
 
6 Week C++ Language Training In Ambala
6 Week C++ Language Training In Ambala6 Week C++ Language Training In Ambala
6 Week C++ Language Training In Ambala
Batra Computer Centre
 
Web designing Course In Ambala Cantt
Web designing Course In Ambala CanttWeb designing Course In Ambala Cantt
Web designing Course In Ambala Cantt
Batra Computer Centre
 
Presentation on Microsoft office 2013 By Batra Computer Centre
Presentation on Microsoft office 2013 By Batra Computer CentrePresentation on Microsoft office 2013 By Batra Computer Centre
Presentation on Microsoft office 2013 By Batra Computer Centre
Batra Computer Centre
 
all types of computer courses in ambala
all types of computer courses in ambala all types of computer courses in ambala
all types of computer courses in ambala
Batra Computer Centre
 
Photoshop Presentation By Batra Computer Centre
Photoshop Presentation By Batra Computer CentrePhotoshop Presentation By Batra Computer Centre
Photoshop Presentation By Batra Computer Centre
Batra Computer Centre
 
Welcome to batra computer centre
Welcome to batra computer centreWelcome to batra computer centre
Welcome to batra computer centre
Batra Computer Centre
 
Presentation On Tally by Batra Computer Centre
Presentation On Tally by Batra Computer CentrePresentation On Tally by Batra Computer Centre
Presentation On Tally by Batra Computer Centre
Batra Computer Centre
 
Presentation on SQL At Batra Computer Cente
Presentation on SQL At Batra Computer CentePresentation on SQL At Batra Computer Cente
Presentation on SQL At Batra Computer Cente
Batra Computer Centre
 
Presentation On PPC by Batra Computer Centre
Presentation On PPC by Batra Computer CentrePresentation On PPC by Batra Computer Centre
Presentation On PPC by Batra Computer Centre
Batra Computer Centre
 
Web Development Training In Ambala At Batra Computer Centre
Web Development Training In Ambala At Batra Computer CentreWeb Development Training In Ambala At Batra Computer Centre
Web Development Training In Ambala At Batra Computer Centre
Batra Computer Centre
 
Presentation Of MS Office
Presentation Of MS OfficePresentation Of MS Office
Presentation Of MS Office
Batra Computer Centre
 
Presentation On Coral Draw By Batra Computer Centre
Presentation On Coral Draw By Batra Computer CentrePresentation On Coral Draw By Batra Computer Centre
Presentation On Coral Draw By Batra Computer Centre
Batra Computer Centre
 
Presentation on Photoshop Tools By Batra Computer Centre
Presentation on Photoshop Tools By Batra Computer CentrePresentation on Photoshop Tools By Batra Computer Centre
Presentation on Photoshop Tools By Batra Computer Centre
Batra Computer Centre
 
One Year Diploma In Computers At Batra Computer Centre
One Year Diploma In Computers At Batra Computer CentreOne Year Diploma In Computers At Batra Computer Centre
One Year Diploma In Computers At Batra Computer Centre
Batra Computer Centre
 

More from Batra Computer Centre (20)

Presentation on MS-Office
Presentation on MS-OfficePresentation on MS-Office
Presentation on MS-Office
 
Presentation on Job oriented
Presentation on Job orientedPresentation on Job oriented
Presentation on Job oriented
 
Presentation On Industrial Training
Presentation On Industrial TrainingPresentation On Industrial Training
Presentation On Industrial Training
 
Presentation On Internet
Presentation On InternetPresentation On Internet
Presentation On Internet
 
Presentation on Android
Presentation on AndroidPresentation on Android
Presentation on Android
 
Web browser(16 03-2018)
Web browser(16 03-2018)Web browser(16 03-2018)
Web browser(16 03-2018)
 
6 Week C++ Language Training In Ambala
6 Week C++ Language Training In Ambala6 Week C++ Language Training In Ambala
6 Week C++ Language Training In Ambala
 
Web designing Course In Ambala Cantt
Web designing Course In Ambala CanttWeb designing Course In Ambala Cantt
Web designing Course In Ambala Cantt
 
Presentation on Microsoft office 2013 By Batra Computer Centre
Presentation on Microsoft office 2013 By Batra Computer CentrePresentation on Microsoft office 2013 By Batra Computer Centre
Presentation on Microsoft office 2013 By Batra Computer Centre
 
all types of computer courses in ambala
all types of computer courses in ambala all types of computer courses in ambala
all types of computer courses in ambala
 
Photoshop Presentation By Batra Computer Centre
Photoshop Presentation By Batra Computer CentrePhotoshop Presentation By Batra Computer Centre
Photoshop Presentation By Batra Computer Centre
 
Welcome to batra computer centre
Welcome to batra computer centreWelcome to batra computer centre
Welcome to batra computer centre
 
Presentation On Tally by Batra Computer Centre
Presentation On Tally by Batra Computer CentrePresentation On Tally by Batra Computer Centre
Presentation On Tally by Batra Computer Centre
 
Presentation on SQL At Batra Computer Cente
Presentation on SQL At Batra Computer CentePresentation on SQL At Batra Computer Cente
Presentation on SQL At Batra Computer Cente
 
Presentation On PPC by Batra Computer Centre
Presentation On PPC by Batra Computer CentrePresentation On PPC by Batra Computer Centre
Presentation On PPC by Batra Computer Centre
 
Web Development Training In Ambala At Batra Computer Centre
Web Development Training In Ambala At Batra Computer CentreWeb Development Training In Ambala At Batra Computer Centre
Web Development Training In Ambala At Batra Computer Centre
 
Presentation Of MS Office
Presentation Of MS OfficePresentation Of MS Office
Presentation Of MS Office
 
Presentation On Coral Draw By Batra Computer Centre
Presentation On Coral Draw By Batra Computer CentrePresentation On Coral Draw By Batra Computer Centre
Presentation On Coral Draw By Batra Computer Centre
 
Presentation on Photoshop Tools By Batra Computer Centre
Presentation on Photoshop Tools By Batra Computer CentrePresentation on Photoshop Tools By Batra Computer Centre
Presentation on Photoshop Tools By Batra Computer Centre
 
One Year Diploma In Computers At Batra Computer Centre
One Year Diploma In Computers At Batra Computer CentreOne Year Diploma In Computers At Batra Computer Centre
One Year Diploma In Computers At Batra Computer Centre
 

Recently uploaded

CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
Bisnar Chase Personal Injury Attorneys
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
ak6969907
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
Celine George
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 

Recently uploaded (20)

CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.Types of Herbal Cosmetics its standardization.
Types of Herbal Cosmetics its standardization.
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 

Presentation on HTML By Batra Computer Centre

  • 1. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 2. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 3. Content What is HTML? Why HTML? HTML Structure HTML Elements HTML Attributes Basic Tags HTML Styles Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com Text Formatting HTML Quotation HTML with CSS HTML Links
  • 4. What is HTML? HTML is the standardmarkuplanguagefor creating Webpages.  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 Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 5. HTML Stands For… Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com HTML Hyper Text Markup Language
  • 6. Why HTML Is Used? The web is based on HTML more than anything else. Anything written carefully in HTML will wok on any browser or OS. It is light inn weight and easy to learn. It is quick to code and compatible with all the browser and OS. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 7. HTML Structure Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 8. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <html> </html> <head> </head> <title>Page Title</title> <body> </body> <p>This is a paragraph</p> <h1>This is the heading</h1> <p>This is another paragraph</p>
  • 9. HTML ELEMENTS An HTML element usually consists of a start tag and end tag, with the content inserted in between: <tagname>Content goes here...</tagname> The HTML element is everything from the start tag to the end tag: <p>Myfirst paragraph.</p> Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com Start Tag Element Content End Tag <h1> My first heading </h1> <p> My first Paragraph </p> <br>
  • 10. HTML Attribute Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com Attributes provide additional informationabout 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"
  • 11. HTML Attributes Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 12. Basic HTML Tags Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 13. HTML Styles Setting the styleof an HTML element, can be done withthe style attribute. The property is a CSS property. The valueis a CSS value. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <tagname style="property:value;">
  • 14.  The background-color property defines the background color for an HTML element.  The color property defines the text color for an HTML element: Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <body style="background-color:powderblue;"> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> <h1 style="color:blue;">This is a heading</h1> <p style="color:red;">This is a paragraph.</p> Examples:-
  • 15.  The font-family property defines the font to be used for an HTML element:  The font-size property defines the text size for an HTML element:  The text-alignproperty defines the horizontal text alignment for an HTML element: Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <h1 style="text-align:center;">Centered Heading</h1> <p style="text-align:center;">Centered paragraph.</p> <h1 style="font-size:300%;">This is a heading</h1> <p style="font-size:160%;">This is a paragraph.</p> <h1 style="font-family:verdana;">This is a heading</h1> <p style="font-family:courier;">This is a paragraph.</p>
  • 16. Text Formatting • HTML also defines special elements for defining text with a special meaning. • HTML uses elements like <b> and <i> for formatting output, like bold or italic text. • Formatting elements were designed to display special types of text: Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 17. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 18. HTML Quotation • The HTML <q> element defines a short quotation. • Browsers usually insert quotation marks around the <q> element. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <p>WWF's goal is to: <q>Build a future where people live in harmony with nature.</q></p>
  • 19. • The HTML <blockquote> element defines a section that is quoted from another source. • Browsers usually indent <blockquote> elements. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <p>Here is a quote from WWF's website:</p> <blockquote cite="http://www.worldwildlife.org/who/index. html"> For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally. </blockquote>
  • 20. Styling HTML With CSS • CSS stands for Cascading Style Sheets. • CSS describes how HTML elements are to be displayedon screen, paper, or in other media. • CSS saves a lot of work. It can control the layout of multiple web pages all at once. • CSS can be added to HTML elements in 3 ways: – Inline - by using the style attribute in HTML elements – Internal - by using a <style> element in the <head> section – External - by using an external CSS file Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 21. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 22. HTML Links - Hyperlinks • HTML links are hyperlinks. • You can click on a link and jump to another document. • When you move the mouse over a link, the mouse arrow will turn into a little hand. Syntax:- Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <a href="url">link text</a>
  • 23. Example • The href attribute specifies the destination address (https://www.google. com) of the link. • Local Links:- Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <a href="https://www.google.com ">Visit our HTML tutorial</a> <a href="html_images.asp">HTML Images</a>
  • 24. HTML Link – Image as a Link It is common to use images as links: Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com <a href="default.asp"> <img src="smiley.gif" alt="HTML tutorial" style="width:42px;height:42px;border:0;"> </a>
  • 25. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 26. About Us Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com We have own Centre library that has sufficient books of great authors for our students. Notes prepared by our teachers are provides to every student for their review. We also provide particular software’s our students on which they are pursuing their courses. Extra classes are given to those students who need some extra time or in case miss due to some reason.
  • 27. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 28. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 29. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com SCO 15, Dayal Bagh, Near Hanuman Mandir, Ambala Cantt. Phn No.: 9729666670,0171-4000670 Email: info.jatinbatra@gmail.com Website:www.batracomputercentre.com
  • 30. Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com