Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
1.2k views
in Computer by (75.0k points)
edited by

Realizing the importance of the Internet, Ms. Shikha a Mathematics teacher, has decided to use Internet as a medium to teach her students Mathematics in an interesting way.

She wants to design a webpage as shown below to create a mathematics tutorial on the topic "Shapes" using HTML.

She has written following HTML code for the same but she is not getting the desired output. Help her in identifying the error(s) and suggest the suitable corrections : 

<html> 

<head > < title > Shapes </title > </head >

<body>

<table>

<tr>

<table heading>Mathematics in a fun way</table heading>

</tr>

<tr>

<td>Shapes</td>

<td>Images</td>

</t>

<tr>

<td>Cirde</td>

<td> <img source = "circle.jpg"> </td>

</tr>

<tr>

<td>Square</td>

< td > < img source = "square.jpg" > </td>

</tr>

</table>

</body>

</html>

1 Answer

+1 vote
by (68.8k points)
selected by
 
Best answer

<html>

< head> < title > Shapes </title > <head >

<body>

<table border = 1> //Correction 1

<tr>

<th colspan=2>Mathematics in a funway</th> //Correction 2&3

</tr>

<tr>

<td>Shapes</td>

< td > Images</td >

</tr>

<tr>

<td>Circle</td >

< td > <img src= "circle.jpg"> </td>

//Correction 4

</tr>

<tr>

<td>Square</td >

<td> <img src= "square.jpg" > </td>

//Correction 5

</tr>

</table>

</body>

<html>

Related questions

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...