Computer Science, asked by jagdishjayshree88, 10 months ago

Q.9 Write HTML Code for the
following table.
Place
State
Wardha
Maharashtra
Maximum
Temperature
in C
47.5
46.4
46.4
46.2
Akola
Khajuraho
Sagar
Madhya
Pradesh​

Answers

Answered by mariospartan
14

Explanation:

Your question is little unclear. Anyway I will try to help you out based on my understanding. According to my understanding, You need columns such as Place, State and maximum temperature which act as a header.

And you have values such as Wardha, Maharashtra, 47.5 etc

<HTML>

<HEAD></HEAD>

<BODY>

<TABLE>

<TR>

<TH>Place</TH>

<TH>State</TH>

<TH>Maximum Temperature</TH>

</TR>

<TR>

<TD>Wardha</TD>

<TD>Maharashtra</TD>

<TD>47.5</TD>

</TR>

</TABLE>

</BODY>

</HTML>

<TABLE> tag is used to create table, TR is used to create row and <TD> for Table Data and <TH> to specify the table heading.

To Know more:

1. https://brainly.in/question/1906180

What is a table and what is its significance in HTML??

2. https://brainly.in/question/5095305

Write coding in html to create a table as shown ......

Similar questions