Q. Create an html5 page containing the polynomial expression as follows:
a0+a1x + a2x2 +a3x3
HTML Code
<HTML>
<HEAD><TITLE><CENTER>The Polynomial Expression</TITLE></HEAD>
<BODY BGCOLOR="#f1284e">
<font size="7">a<SUB><SMALL>0</SMALL></SUB>+a<SUB><SMALL>1</SMALL></SUB>x + a<SUB><SMALL>2</SUB></SMALL>x<SUP><SMALL>2</SMALL></SUP> +a<SUB><SMALL>3</SUB></SMALL>x<SUP><SMALL>3</SMALL></SUP></font>
</BODY>
</HTML>
Output:
a0+a1x + a2x2 +a3x3
HTML Code
<HTML>
<HEAD><TITLE><CENTER>The Polynomial Expression</TITLE></HEAD>
<BODY BGCOLOR="#f1284e">
<font size="7">a<SUB><SMALL>0</SMALL></SUB>+a<SUB><SMALL>1</SMALL></SUB>x + a<SUB><SMALL>2</SUB></SMALL>x<SUP><SMALL>2</SMALL></SUP> +a<SUB><SMALL>3</SUB></SMALL>x<SUP><SMALL>3</SMALL></SUP></font>
</BODY>
</HTML>
Output:
0 Comments