Tuesday 25 September 2018

HTML Paragraph and Headline

Paragraph in Html


  • Open and close paragraph with p tag..The opening tag is <p> and the closing tag close with backslace </p>

       Example:-

       <p>This is Paragraph</p>

Heading in Html

  • There are six type of heading in html <h1>,<h2>,<h3>,<h4>,<h5>,<h6> and Each and every heading close with backslace </h1>,</h2>,.....,</h6>. and the <h1> tag having the largest size of font and <h6> tag having the smallest size of font.

  Example:-

<h1>Heading1</h1>

<h2>Heading2</h2>

<h3>Heading3</h3>

<h4>Heading4</h4>

<h5>Heading5</h5>

<h6>Heading6</h6>

No comments:

Post a Comment

Articles