Create a simple html file to demonstrate the use of different basic tags

 Code:

<!DOCTYPE html>

<html>

<head>

<title>Basic Tags</title>

</head>

<body style="background: lavenderblush;">

<font face="Times New Roman" size="10" color="Red">V Adithya</font>

<br>

<p>The List of Beverages are</p>

<ul type="circle">

<li>Sprite</li>

<li>Cola</li>

<li>Joy</li>

</ul>

<hr color="red">

<p align="left">Left Text</p>

<p align="center">Center Text</p>

<p align="right">Right Text</p>

<p align="justify">Justfied Text</p>

<marquee style="font-family: Book Antique;color:#CF4629;height:25px;" bgcolor="Cyan"

direction="right">This Text will scroll from left to Right

</marquee>

<marquee bgcolor="#6B0AF8" style="color:white;font-family: arial;"

behavior="alternate">Alternate Text appears

</marquee>

<p>

<b>Bold</b><br><i>Ittalic</i><br><u>Underlined</u><br><strike>Strike</strike><br><strong>Strong</

strong> </p>

<p>2 raised to 4 is 2<sup>4</sup></p>

<p>Chemical formula of Water is H<sub>2</sub>O </p>

</body>

</html>

Output: