1<table width = 80% height = 50%> <!-- You can set the height and width by using the height and width attributes with table tag and writing the size in %age (percentage). -->
2 <tr align="center">
3 <th>Question</th>
4 <th>Answer</th>
5 </tr>
6 <tr>
7 <td>1 + 1 = </td>
8 <td>2</td>
9 </tr>
10 <tr>
11 <td>2 + 2 = </td>
12 <td>4</td>
13 </tr>
14</table>
15
16<!-- You can try this in your code editor by copying this to your code editor -->
17<!-- Thank you if this helped you and Sorry if it didn't worked for you -->