Computer Science, asked by shaikhheena9595, 5 months ago

Write the html code for the following table
CBSE
GRADE 5 GRADE 6 GRADE 7

Answers

Answered by sahithya67
0

Answer:

head title table title

Answered by mad210203
0

HTML code is given below.

Explanation:

<!DOCTYPE html>

<html>

<style>

h2{text-align: center;}

h3{text-align: center;}

</style>

<body>

<h2>HTML Table</h2>

<h3>CBSE</h3>

<table style="width:100%">

 <tr>

   <th>GRADE 5</th>

   <th>GRADE 6</th>

   <th>GRADE 7</th>

 </tr>

</table>

</body>

</html>

Refer the attached image to check how the website looks if we use this code.

Attachments:
Similar questions