Web Technologies - Old Questions

6.  Write and HTML code to display the following:

                                

5 marks | Asked in 2071-II

<!DOCTYPE html>

<html>

<head>

<title>Example</title>

</head>

<body>

 <table border="1">

  <tr>

<td><b>Example</b></td>

  </tr>

  <tr>

<td>(a+b)<sup>2</sup>=a<sup>2</sup>+ 2ab + b<sup>2</sup></td>

  </tr>

  <tr>

<td>Thank You</td>

  </tr>

 </table>

</body>

</html>