Tables in HTML

What is a table?

Tags


Here are some example tables,feel free to change the values or add a new row/column

Roll No Marks
1 99.9
2 0.1
Total 100

rowspan

rowspan makes the value span upto the number of rows given inside quotes

Here Core subjects span 3 rows to include 3 subjects

Category Subjects
Core Subjects Linear Algebra and Number Theory
Semiconductors and Nanomaterials
Object Oriented Programming with C++
Additional Subjects Digital Design Principles
Professional English - 2

colspan

colspan makes the value span upto the number of columns given in quotes

Here Student Report Card spans the 2 columns Roll No and Grade

Student Report Card
Roll No Grade
17 A+
38 B-

For reference, if you have spanned the row, you dont need to enter the data in the current box (row/col)

Go back to the main page