Formatting Elements To the HTML Page

admin_img Posted By Bajarangi soft , Posted On 27-09-2020

HTML contains several elements for defining text with a special meaning,Formatting elements were designed to display special types of text,bold text,important text,text in italic,marked,deleted,inserted,subscript,superscript to the text using Formatting Elements.

Formatting Element

1.HTML Formatting Elements

<!DOCTYPE html>
<html>
<body>

<p style="color: blue;font-size:40px;"><b>Bajarangi Soft</b></p>
<p style="color: blue;font-size:40px;"><i>Bajarangi Soft</i></p>
<p style="color: blue;font-size:40px;">This is<sub> BAJARANGI</sub> and <sup>SOFTWARE</sup></p>
<p style="color: blue;font-size:40px;"><em>Bajarangi Soft</em></p>
<p style="color: blue;font-size:40px;"><mark>Bajarangi Soft</mark></p>
<p style="color: blue;font-size:40px;"><del>Bajarangi Soft</del></p>
<p style="color: blue;font-size:40px;"><ins>Bajarangi Soft</ins></p>
<p style="color: blue;font-size:40px;"><small>Bajarangi Soft</small></p>
<p style="color: blue;font-size:40px;"><strong>Bajarangi Soft</strong></p>


</body>
</html>

Related Post