Computer Science, asked by Anonymous, 1 year ago

steps for inserting tables in html

Answers

Answered by Anonymous
1
Basic table example: <html> <head> <title>My Table Page</title> </head> <body> <table border=1> <th>Heading 1</th>
Answered by diamondrose
1
marks of 2 students.tr-table row, th-table heading, td-table data

<html><head><title>creating a table</title></head><body>
<table border="1" color="blue">
<tr>
<th>s.no</th>
<th>name</th>
<th>marks</th>
</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>

Anonymous: your describtion is nice
diamondrose: thanx
Anonymous: welcome
Similar questions