a. Write the HTML code to create the following table.
S.NO. NAME MARKS
Sidhi 88
Kiran
95
N
Answers
Answered by
2
Answer:
You can make a table by the code
<table>
<TR>
<TH colspan=""></TH>
</TR>
<TR>
<TD></TD>
</TR>
You can use this code according to your need....
I think it will be helpful....
Now you can make your table by own....
Answered by
16
Answer:
<HTML>
<HEAD>
</HEAD>
<BODY>
<TABLE>
<TR>
<TD>SL NO.</TD>
<TD>NAME</TD>
<TD>MARKS</TD>
</TR>
<TR>
<TD>1</TD>
<TD>Sidhi</TD>
<TD>88</TD>
</TR>
<TR>
<TD>2</TD>
<TD>Kiran</TD>
<TD>95</TD>
</TR>
</TABLE>
</BODY>
</HTML>
U hope it helps you. Thank you and mark me brainliest.
Similar questions