HTML Text formatting in web page

Posted on Updated on

format.html

<html>
<head>
<title>Text formatting </title>
</head>
<body>
<center>
<h3>Text formatting example</h3>
<b>This is bold text.</b><br>
<i>This is italic text.</i><br>
<u>This is underline text </u>
<hr>
<strong>Attention</strong><br>
<em>Silence</em><br>
<mark>Highlighted text</mark>
</center>
</body>
</html>

Output

formatt