Write Html code to design a web page to create a table with 6 rows and 3 columns for entering marklist of 5 students | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 3

Write Html code to design a web page to create a table with 6 rows and 3 columns for entering marklist of 5 students

Assume suitable heading for each column

14th Jan 2020, 5:25 PM
Binto Alex
Binto Alex - avatar
2 Answers
0
use 6 <tr> and 18 <td> for make your table
14th Jan 2020, 6:45 PM
Seema Devi
Seema Devi - avatar
0
<table border="1"> <tr><th>S/N</th><th>Name</th><th>Score</th></tr> <tr><td>1</td><td>Student 1</td><td>Score of student 1</td></tr> <tr><td>2</td><td>Student 2</td><td>Score of student 2</td></tr> <tr><td>3</td><td>Student 3/td><td>Score of student 3</td></tr> <tr><td>4</td><td>Student 4</td><td>Score of student 4</td></tr> <tr><td>5</td><td>Student 5</td><td>Score of student 5</td></tr> <tr><td>6</td><td>Student 6</td><td>Score of student 6</td></tr> </table>
15th Jan 2020, 9:21 AM
Atewogbola Ayomide
Atewogbola Ayomide - avatar