Write the HTML tags for the following.

  • Center text:
    <div style="text-align:center;">Your text here</div>
  • Paragraph:
    <p>Your paragraph text here.</p>
  • Strike out:
    <s>Your text here</s>
  • Heading:
    <h1>Your heading here</h1>
  • Superscript:
    <sup>Your superscript text</sup>
  • Bold:
    <b>Your bold text</b>
  • Subscript:
    <sub>Your subscript text</sub>
  • Underline:
    <u>Your underlined text</u>
  • Font size, color, and typeface:
    <span style="font-size:20px; color:blue; font-family:Arial;">Your styled text</span>