You are on page 1of 2

Assignment No:2

Name: Yadav Prathmesh Uday Roll No:92


Sub: Lab Course Based On Web Technology Date:12/01/2023
Q.1 Write a Html program to demonstrate the use of text formatting tags.

CODE:
<html>
<head>
<title> </title>
<b> This is Bold text </b> <br>
<Strong>This is Strong text </strong> <br>
<i> Defines italic text </i> <br>
<em> specifies emphasized text </em> <br>
<mark> Defines highlighted text </mark> <br>
<sup> Shows superscripted text</sup> <br>
<sub> shows subscripted text </sub> <br>
<small> Specifies text with smaller font size <small> <br>
<big> Specifies text with larger font size </big> <br>
<del> Defines deleted text </del> <br>
<ins> Specifies inserted text >/ins> <br>
</head>
</html>
OUTPUT:

You might also like