SlideShare uma empresa Scribd logo
1 de 32
Design your first
        Website



                                                                      HTML
                                                                     & CSS
Bunty Jain, IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
Website Designing


         An Overview



          Bunty Jain IT
          Training, SAP, seekbuntyjain@g
          mail.com Delhi India.
Web Components

 Clientsand Servers
 Internet Service Providers
 Web Site Hosting Services
 Domains Names



                           Bunty Jain IT Training, SAP,
                           seekbuntyjain@gmail.com Delhi
                           India.
With HTML you can create
       your own Web site
   HTML is easy to learn - You will
                          enjoy it.


                       Bunty Jain IT
                       Training, SAP, seekbuntyjain@g
                       mail.com Delhi India.
HTML Tags

HTML is a language for describing web pages.

HTML stands for Hyper Text Markup Language

A markup language is a set of markup tags

HTML uses markup tags to describe web pages


                                Bunty Jain IT Training, SAP,
                                seekbuntyjain@gmail.com Delhi
                                India.
HTML Tags

HTML markup tags are usually called HTML tags

HTML tags are keywords surrounded by angle
brackets like <html>

HTML tags normally come in pairs like <b> and
</b>

The first tag in a pair is the start tag, the second
tag is the end tag
                                      Bunty Jain IT Training, SAP,
                                      seekbuntyjain@gmail.com Delhi
                                      India.
HTML Format

<html>
    <body>

   <h1>My First Heading</h1>

   <p>My first paragraph.</p>

    </body>
</html>
                          Bunty Jain IT Training, SAP,
                          seekbuntyjain@gmail.com Delhi
                          India.
Editing HTML
  HTML can be written and edited using
many different editors like Dreamweaver
                       and Visual Studio.


  However, in this tutorial we use a plain
 text editor (like Notepad) to edit HTML.

                            Bunty Jain IT
                            Training, SAP, seekbuntyjain@g
                            mail.com Delhi India.
.HTM or .HTML File
              Extension?
   When you save an HTML file, you
can use either the .htm or the .html
           file extension. There is no
  difference, it is entirely up to you.


                          Bunty Jain IT Training, SAP,
                          seekbuntyjain@gmail.com Delhi
                          India.
HTML Headings
HTML headings are defined with the
             <h1> to <h6> tags.

                          Example
      <h1>This is a heading</h1>
      <h2>This is a heading</h2>
      <h3>This is a heading</h3>
                       Bunty Jain IT Training, SAP,
                       seekbuntyjain@gmail.com Delhi
                       India.
HTML Paragraphs
Paragraphs are defined with the <p> tag.

                                      Example

          <p>This is a paragraph</p>
     <p>This is another paragraph</p>



                         Bunty Jain IT Training, SAP,
                         seekbuntyjain@gmail.com Delhi
                         India.
HTML Links

HTML links are defined with the <a> tag.

                                 Example
                                      <a
href="http://www.subjectelement.com">
                      This is a link</a>
                           Bunty Jain IT
                           Training, SAP, seekbuntyjain@g
                           mail.com Delhi India.
HTML Images
HTML images are defined with the
                     <img> tag.

                              Example

  <img src=“subjectelement.jpg"
   width="104" height="142" />
                   Bunty Jain IT Training, SAP,
                   seekbuntyjain@gmail.com Delhi
                   India.
Nested HTML Elements
                                    <html>

                              <body>
  <p>This is my first paragraph.</p>
                             </body>

                                  </html>

                        Bunty Jain IT
                        Training, SAP, seekbuntyjain@g
                        mail.com Delhi India.
The <body> element
                                    <body>
        <p>This is my first paragraph.</p>
                                   </body>


The <body> element defines the body of the
                         HTML document.


                            Bunty Jain IT
                            Training, SAP, seekbuntyjain@g
                            mail.com Delhi India.
The <html> element:
                                              <html>

                                     <body>
         <p>This is my first paragraph.</p>
                                    </body>

                                            </html>

The <html> element defines the whole HTML
                                     document.
                            Bunty Jain IT
                               Training, SAP, seekbuntyjain@g
                               mail.com Delhi India.
Don't Forget the End
                      Tag
Some HTML elements might display correctly even if you
                                  forget the end tag:

                                <p>This is a paragraph


The example above works in most browsers, because the
                     closing tag is considered optional.

                                     Never rely on this.

                                      Bunty Jain IT Training, SAP,
                                      seekbuntyjain@gmail.com Delhi
                                      India.
HTML Tip: Use
     Lowercase Tags
HTML tags are not case sensitive:

   <P> means the same as <p>




                    Bunty Jain IT
                    Training, SAP, seekbuntyjain@g
                    mail.com Delhi India.
HTML Attributes
      Attributes provide additional information about an
                                                 element

Attributes come in name/value pairs like: name="value“


                                            Example
  <a href="http://www.subjectselement.com">This is a
                                           link</a>



                                      Bunty Jain IT Training, SAP,
                                      seekbuntyjain@gmail.com Delhi
                                      India.
HTML Horizontal Lines
The <hr /> tag creates a horizontal line in an
                                 HTML page.


                <p>This is a paragraph</p>
                                     <hr />
                <p>This is a paragraph</p>
                                     <hr />
                <p>This is a paragraph</p>
                               Bunty Jain IT Training, SAP,
                               seekbuntyjain@gmail.com Delhi
                               India.
HTML Comments
Comments can be inserted into the HTML code
to make it more readable and understandable.

              Comments are written like this:


                  <!-- This is a comment -->



                              Bunty Jain IT Training, SAP,
                              seekbuntyjain@gmail.com Delhi
                              India.
HTML Tip - How to View
          HTML Source
                Have you ever seen a
   Web           page and wondered
         "Hey! How did they do that?"

             To find out, right-click in
 the           page and select "View
                          Source" (IE)

                       Bunty Jain IT
                       Training, SAP, seekbuntyjain@g
                       mail.com Delhi India.
HTML Line Breaks
Use the <br /> tag if you want a line break (a
  new line) without starting a new paragraph:

                                            Example

<p>This is<br />a para<br />graph with line
                               breaks</p>



                               Bunty Jain IT Training, SAP,
                               seekbuntyjain@gmail.com Delhi
                               India.
HTML Text Formatting



            This text is bold

           This text is big
             This text is italic
               Bunty Jain IT Training, SAP,
               seekbuntyjain@gmail.com Delhi
               India.
HTML Formatting Tags

   HTML uses tags like <b> and <i> for
formatting output, like bold or italic text.




                              Bunty Jain IT Training, SAP,
                              seekbuntyjain@gmail.com Delhi
                              India.
The HTML <font> Tag
                                                     <p>
            <font size="5" face="arial" color="red">
This paragraph is in Arial, size 5, and in red text color.
                                                 </font>
                                                    </p>

                                                     <p>
        <font size="3" face="verdana" color="blue">
This paragraph is in Arial, size 5, and in red text color.
                                                 </font>
                                                    </p>




                                     Bunty Jain IT
                                     Training, SAP, seekbuntyjain@g
                                     mail.com Delhi India.
HTML Tables
    <table border="1">
                                  <tr>
 <td>row 1, cell 1</td>
 <td>row 1, cell 2</td>
                                </tr>
                                  <tr>
 <td>row 2, cell 1</td>
 <td>row 2, cell 2</td>
                                </tr>
                        </table>
        Bunty Jain IT Training, SAP,
             seekbuntyjain@gmail.com Delhi
             India.
HTML Table Headers
            <table border="1">
                           <tr>
            <th>Header 1</th>
            <th>Header 2</th>
                          </tr>
                           <tr>
         <td>row 1, cell 1</td>
         <td>row 1, cell 2</td>
                          </tr>
                           <tr>
         <td>row 2, cell 1</td>
         <td>row 2, cell 2</td>
                          </tr>
                      </table>
             Bunty Jain IT
             Training, SAP, seekbuntyjain@g
             mail.com Delhi India.
HTML Lists
          <ul>
<li>Coffee</li>
  <li>Milk</li>
         </ul>
          <ol>
<li>Coffee</li>
  <li>Milk</li>
         </ol>
      Bunty Jain IT Training, SAP,
      seekbuntyjain@gmail.com Delhi
      India.
HTML Layouts - Using
              Tables

The simplest way of creating layouts is
       by using the HTML <table> tag.



                          Bunty Jain IT Training, SAP,
                          seekbuntyjain@gmail.com Delhi
                          India.
The HTML head
                     Element
The following tags can be added to the head
                                     section

                                    <title>,
                                   <base>,
                                    <link>,
                                   <meta>,
                                  <script>,
                                and <style>
                              Bunty Jain IT
                              Training, SAP, seekbuntyjain@g
                              mail.com Delhi India.
We can move to learn
                 CSS


                Thanks

                           Q&A
             Bunty Jain IT Training, SAP,
             seekbuntyjain@gmail.com Delhi
             India.

Mais conteúdo relacionado

Mais procurados

Creating a webpage in html
Creating a webpage in htmlCreating a webpage in html
Creating a webpage in html
Shrey Goswami
 

Mais procurados (20)

Web Page Designing
Web Page DesigningWeb Page Designing
Web Page Designing
 
Static and Dynamic webpage
Static and Dynamic webpageStatic and Dynamic webpage
Static and Dynamic webpage
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
Span and Div tags in HTML
Span and Div tags in HTMLSpan and Div tags in HTML
Span and Div tags in HTML
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
 
Bootstrap ppt
Bootstrap pptBootstrap ppt
Bootstrap ppt
 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
 
HTML5 & CSS3
HTML5 & CSS3 HTML5 & CSS3
HTML5 & CSS3
 
css.ppt
css.pptcss.ppt
css.ppt
 
CSS
CSSCSS
CSS
 
HTML
HTMLHTML
HTML
 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
HTML Block and Inline Elements
HTML Block and Inline ElementsHTML Block and Inline Elements
HTML Block and Inline Elements
 
JavaScript - Chapter 12 - Document Object Model
  JavaScript - Chapter 12 - Document Object Model  JavaScript - Chapter 12 - Document Object Model
JavaScript - Chapter 12 - Document Object Model
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1
 
Creating a webpage in html
Creating a webpage in htmlCreating a webpage in html
Creating a webpage in html
 
Elements Of Web Design
Elements Of Web DesignElements Of Web Design
Elements Of Web Design
 

Destaque

Destaque (8)

HTML & CSS Training Institute in Ambala ! Batra Computer Centre
HTML & CSS Training Institute in Ambala ! Batra Computer CentreHTML & CSS Training Institute in Ambala ! Batra Computer Centre
HTML & CSS Training Institute in Ambala ! Batra Computer Centre
 
What Makes Great Infographics
What Makes Great InfographicsWhat Makes Great Infographics
What Makes Great Infographics
 
Masters of SlideShare
Masters of SlideShareMasters of SlideShare
Masters of SlideShare
 
STOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
STOP! VIEW THIS! 10-Step Checklist When Uploading to SlideshareSTOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
STOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
 
You Suck At PowerPoint!
You Suck At PowerPoint!You Suck At PowerPoint!
You Suck At PowerPoint!
 
10 Ways to Win at SlideShare SEO & Presentation Optimization
10 Ways to Win at SlideShare SEO & Presentation Optimization10 Ways to Win at SlideShare SEO & Presentation Optimization
10 Ways to Win at SlideShare SEO & Presentation Optimization
 
How To Get More From SlideShare - Super-Simple Tips For Content Marketing
How To Get More From SlideShare - Super-Simple Tips For Content MarketingHow To Get More From SlideShare - Super-Simple Tips For Content Marketing
How To Get More From SlideShare - Super-Simple Tips For Content Marketing
 
How to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & TricksHow to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & Tricks
 

Semelhante a Design your first website using HTML

3 v html_next_energy_03.27.2014_v1.0
3 v html_next_energy_03.27.2014_v1.03 v html_next_energy_03.27.2014_v1.0
3 v html_next_energy_03.27.2014_v1.0
3V Business Solutions
 

Semelhante a Design your first website using HTML (20)

TOPIC 2 - HTML BASICS.pptx
TOPIC 2 - HTML BASICS.pptxTOPIC 2 - HTML BASICS.pptx
TOPIC 2 - HTML BASICS.pptx
 
HTML5 - Web Development Fundaments Part 1 - DeepDive Learning Academy
HTML5 - Web Development Fundaments Part 1 - DeepDive Learning AcademyHTML5 - Web Development Fundaments Part 1 - DeepDive Learning Academy
HTML5 - Web Development Fundaments Part 1 - DeepDive Learning Academy
 
Html
HtmlHtml
Html
 
Basics of html for web development by software outsourcing company india
Basics of html for web development   by software outsourcing company indiaBasics of html for web development   by software outsourcing company india
Basics of html for web development by software outsourcing company india
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
 
Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
 
HTML Tutorial
HTML TutorialHTML Tutorial
HTML Tutorial
 
3 v html_next_energy_03.27.2014_v1.0
3 v html_next_energy_03.27.2014_v1.03 v html_next_energy_03.27.2014_v1.0
3 v html_next_energy_03.27.2014_v1.0
 
On-Page SEO
On-Page SEOOn-Page SEO
On-Page SEO
 
html.pptx
html.pptxhtml.pptx
html.pptx
 
HTML Basics for SEO
HTML Basics for SEOHTML Basics for SEO
HTML Basics for SEO
 
Html
HtmlHtml
Html
 
HTML
HTMLHTML
HTML
 
HTML Repurposing Content.pptx
HTML Repurposing Content.pptxHTML Repurposing Content.pptx
HTML Repurposing Content.pptx
 
Search engine optimization ppt
Search engine optimization pptSearch engine optimization ppt
Search engine optimization ppt
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
html complete notes
html complete noteshtml complete notes
html complete notes
 
html compete notes basic to advanced
html compete notes basic to advancedhtml compete notes basic to advanced
html compete notes basic to advanced
 
Html5
Html5Html5
Html5
 
Html ppt
Html pptHtml ppt
Html ppt
 

Último

Último (20)

Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptx
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe
 
Event-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream ProcessingEvent-Driven Architecture Masterclass: Challenges in Stream Processing
Event-Driven Architecture Masterclass: Challenges in Stream Processing
 
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdfWhere to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
 
State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!
 
UiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overviewUiPath manufacturing technology benefits and AI overview
UiPath manufacturing technology benefits and AI overview
 
Top 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development CompaniesTop 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development Companies
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024
 
Design and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data ScienceDesign and Development of a Provenance Capture Platform for Data Science
Design and Development of a Provenance Capture Platform for Data Science
 
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdfHow Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM Performance
 
Working together SRE & Platform Engineering
Working together SRE & Platform EngineeringWorking together SRE & Platform Engineering
Working together SRE & Platform Engineering
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptx
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджера
 
Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024
 
Introduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptxIntroduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptx
 
2024 May Patch Tuesday
2024 May Patch Tuesday2024 May Patch Tuesday
2024 May Patch Tuesday
 

Design your first website using HTML

  • 1. Design your first Website HTML & CSS Bunty Jain, IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 2. Website Designing An Overview Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 3. Web Components  Clientsand Servers  Internet Service Providers  Web Site Hosting Services  Domains Names Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 4. With HTML you can create your own Web site HTML is easy to learn - You will enjoy it. Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 5. HTML Tags HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language A markup language is a set of markup tags HTML uses markup tags to describe web pages Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 6. HTML Tags HTML markup tags are usually called HTML tags HTML tags are keywords surrounded by angle brackets like <html> HTML tags normally come in pairs like <b> and </b> The first tag in a pair is the start tag, the second tag is the end tag Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 7. HTML Format <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 8. Editing HTML HTML can be written and edited using many different editors like Dreamweaver and Visual Studio. However, in this tutorial we use a plain text editor (like Notepad) to edit HTML. Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 9. .HTM or .HTML File Extension? When you save an HTML file, you can use either the .htm or the .html file extension. There is no difference, it is entirely up to you. Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 10. HTML Headings HTML headings are defined with the <h1> to <h6> tags. Example <h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 11. HTML Paragraphs Paragraphs are defined with the <p> tag. Example <p>This is a paragraph</p> <p>This is another paragraph</p> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 12. HTML Links HTML links are defined with the <a> tag. Example <a href="http://www.subjectelement.com"> This is a link</a> Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 13. HTML Images HTML images are defined with the <img> tag. Example <img src=“subjectelement.jpg" width="104" height="142" /> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 14. Nested HTML Elements <html> <body> <p>This is my first paragraph.</p> </body> </html> Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 15. The <body> element <body> <p>This is my first paragraph.</p> </body> The <body> element defines the body of the HTML document. Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 16. The <html> element: <html> <body> <p>This is my first paragraph.</p> </body> </html> The <html> element defines the whole HTML document. Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 17. Don't Forget the End Tag Some HTML elements might display correctly even if you forget the end tag: <p>This is a paragraph The example above works in most browsers, because the closing tag is considered optional. Never rely on this. Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 18. HTML Tip: Use Lowercase Tags HTML tags are not case sensitive: <P> means the same as <p> Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 19. HTML Attributes Attributes provide additional information about an element Attributes come in name/value pairs like: name="value“ Example <a href="http://www.subjectselement.com">This is a link</a> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 20. HTML Horizontal Lines The <hr /> tag creates a horizontal line in an HTML page. <p>This is a paragraph</p> <hr /> <p>This is a paragraph</p> <hr /> <p>This is a paragraph</p> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 21. HTML Comments Comments can be inserted into the HTML code to make it more readable and understandable. Comments are written like this: <!-- This is a comment --> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 22. HTML Tip - How to View HTML Source Have you ever seen a Web page and wondered "Hey! How did they do that?" To find out, right-click in the page and select "View Source" (IE) Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 23. HTML Line Breaks Use the <br /> tag if you want a line break (a new line) without starting a new paragraph: Example <p>This is<br />a para<br />graph with line breaks</p> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 24. HTML Text Formatting This text is bold This text is big This text is italic Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 25. HTML Formatting Tags HTML uses tags like <b> and <i> for formatting output, like bold or italic text. Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 26. The HTML <font> Tag <p> <font size="5" face="arial" color="red"> This paragraph is in Arial, size 5, and in red text color. </font> </p> <p> <font size="3" face="verdana" color="blue"> This paragraph is in Arial, size 5, and in red text color. </font> </p> Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 27. HTML Tables <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 28. HTML Table Headers <table border="1"> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table> Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 29. HTML Lists <ul> <li>Coffee</li> <li>Milk</li> </ul> <ol> <li>Coffee</li> <li>Milk</li> </ol> Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 30. HTML Layouts - Using Tables The simplest way of creating layouts is by using the HTML <table> tag. Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.
  • 31. The HTML head Element The following tags can be added to the head section <title>, <base>, <link>, <meta>, <script>, and <style> Bunty Jain IT Training, SAP, seekbuntyjain@g mail.com Delhi India.
  • 32. We can move to learn CSS Thanks Q&A Bunty Jain IT Training, SAP, seekbuntyjain@gmail.com Delhi India.