Skip to main content

Headings, Paragraphs and Images

Headings, Paragraphs and Images | HTML:  Using Headings in HTML with h1,h2,h3,h4,h5,h6, Paragraphs with p and Images with img.

Here is the HeadingsParagraphsImages.html:

  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>Headings,Paragraphs and Images</title>
  5.   </head>
  6.   <body>
  7.   <h1>Here is the details of Headings</h1>
  8.     <h1>Headings with h1</h1>
  9.     <h2>Headings with h2</h2>
  10.     <h3>Headings with h3</h3>
  11.     <h4>Headings with h4</h4>
  12.     <h5>Headings with h5</h5>
  13.     <h6>Headings with h6</h6>
  14.   <h1>Here is the details of Paragraphs</h1>
  15.     <p>this tag is used for Paragraphs and you can <br>
  16.       break Paragraphs wiht br tag</p>
  17.   <h1>Here is the deatails of Images</h1>
  18.     <img src="flowers.jpeg">
  19.   </body>
  20. </html>

Web view of Html:




Here is the Video: