Web Technologies - Old Questions
Question Answer Details
6. Write and HTML code to display the following:
Answer
AI Generated Answer
AI is thinking...
Official Answer
<!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>