_tag displays the text in center of the webpage horizontallys
Answers
Answered by
12
Answer:
<p align ="center"> tag is used to align a text in the center of the webpage in HTML (hyper text markup language).
Similarly to align a text to the right a <p align ="right"> tag is used and for the left <p align ="left"> tag is used.
Similarly some tags used for formatting text is written below in HTML:
<html>
<head>
<title>formatting text</title>
<body>
<p>regular text</p>
<p><b>bold text</b></p>
<p><i>italic text</i></p>
<p><small>small text</small></p>
<p><strong>strong text</strong></p>
<p><sub>subscripted text</sub></p>
<p><sup>superscripted text</sup></p>
<p><ins>inserted text</ins></p>
<p><del>deleted text</del></p>
</body>
</html>
Similar questions