Wednesday, 4 March 2020

WT-14

Write a HTML code to display the name of your family members each in different color, size and style. Also display the following polynomial expression                              
a0+a1x1+a2x2+a3x3+a4x4


<html>
<head>
<style>
sup{color:red;
font-family: "Times New Roman";}
sub{color:blue;
font-style: italic;
font-size: 40px;}
</style>
</head>
<body>
<b>
a<sub>0</sub>+
a1X<sup>1</sup>+
a2X<sup>2</sup>+
a3X<sup>3</sup>+
a4X<sup>4</sup>

</body>