Thursday, 21 July 2016

CREATE AN HTML5 PAGE CONTAINING THE POLYNOMIAL EXPRESSION AS FOLLOWS

a0+a1x+a2x2+a3x3

<html>
<head>
<title> Polynomial Expression </title>
</head>
<body>
<H1>a<sub>0</sub> + a<sub>1</sub>x + a<sub>2</sub>x<sup>2</sup> + a<sub>3</sub>x<sup>3</sup>
</body>
</html>


1 comment: