SlideShare a Scribd company logo
1 of 30
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 HTML 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 Centrejatin 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 Centrejatin 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 Centrejatin 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 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, 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
 
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
htmlhtml
htmltumetr1
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshopvardanyan99
 
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
 
BITM3730 9-12.pptx
BITM3730 9-12.pptxBITM3730 9-12.pptx
BITM3730 9-12.pptxMattMarino13
 
Meta tag creation
Meta tag creationMeta tag creation
Meta tag creationAniketTiwari26
 
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 Centrejatin 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 Centrejatin 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 KnowDaniel Bianchini
 
Lab1_HTML.pptx
Lab1_HTML.pptxLab1_HTML.pptx
Lab1_HTML.pptxIslamGhonimi1
 
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
 
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 Centrejatin batra
 

Similar to HTML Training Institute in Ambala ! 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 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
 
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
 

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
 
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
 

Recently uploaded

POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
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
 
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
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
 
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
 
“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
 
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
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
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
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
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
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 

Recently uploaded (20)

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🔝
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
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
 
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
 
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
 
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
 
“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...
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
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
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
CĂłdigo Creativo y Arte de Software | Unidad 1
CĂłdigo Creativo y Arte de Software | Unidad 1CĂłdigo Creativo y Arte de Software | Unidad 1
CĂłdigo Creativo y Arte de Software | Unidad 1
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
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
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
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
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 

HTML Training Institute in Ambala ! 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