Draw a table with 3 columns and 5 rows in the space given below. Give the heading
"MOBILE - RESEARCH” to the table. First column will have the names/models of latest
mobile phones, second column will have the specifications and third column will have
the approx. cost. Specifications column can have details like internal memory, Front Camera,
ACTIVITY :
Back Camera etc.
Answers
Answered by
4
Answer:
Hi, here is the code:
<HTML>
<BODY>
<TABLE>
<TR COLSPAN='3'>
<TH>MOBILE-RESEARCH</TH>
</TR>
<TR>
<TH>Model name of latest smartphones</TH>
<TH>Specifications</TH>
<TH>Approx. cost(in rupees)</TH>
</TR>
<TR>
<TD>Redmi 9 power</TD>
<TD>Quad primary cameras and 6000 mAh fast charging</TD>
<TD>11,000</TD>
</TR>
<TR>
<TD>Vivo Y51</TD>
<TD>Android 11, triple camera and 5000 mAh charging</TD>
<TD>17,900</TD>
</TR>
<TR>
<TD>Oneplus 8T</TD>
<TD>snapdragon 865,8gb ram, quad camera and warp charging</TD>
<TD>43,000</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Explanation:
These are just a few examples. You can also write another ones if you want.
I hope this helps you.
vaidehipradhan21:
pls mark it as brainliest
Similar questions