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:
- <!DOCTYPE html>
- <html>
- <head>
- <title>Headings,Paragraphs and Images</title>
- </head>
- <body>
- <h1>Here is the details of Headings</h1>
- <h1>Headings with h1</h1>
- <h2>Headings with h2</h2>
- <h3>Headings with h3</h3>
- <h4>Headings with h4</h4>
- <h5>Headings with h5</h5>
- <h6>Headings with h6</h6>
- <h1>Here is the details of Paragraphs</h1>
- <p>this tag is used for Paragraphs and you can <br>
- break Paragraphs wiht br tag</p>
- <h1>Here is the deatails of Images</h1>
- <img src="flowers.jpeg">
- </body>
- </html>