Slip 14 - A) 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+a1x^1 +a2x^2 +a3x^3 +a4x^4

Solution:

<html>
<head>
<title> Polynomial Expression </title>
</head>
<body>
<br>
a<sub>0</sub> + 
a1X<sub>1</sub> + 
a2X<sub>2</sub> + 
a3X<sub>3</sub>+
a4X<sub>4</sub>+
</body>
</html>

Post a Comment

0 Comments