Tags inside table

An HTML table contains a set of columns and actual data rows and each row consists of one or more cells. Inside Table Cells you can add other HTML tags other than normal text like Image, Links , List , Tables etc.

How to add an Image inside a Table Cell

You just put an img tag inside the table cell (< td > tag).

The src attribute's value can be any valid URL of an image on the Web , local or remote.

How to add a Link inside a Table Cell

Hyperlink is a pointer from one HTML document to another one, the target may be same website location or some other location on the Internet. You can add links inside the Table Cells.

How to add a List inside a Table Cell

HTML Lists are used to group related pieces of information together. You can add Lists in HTML Table Cells.

How to add a Paragraphs inside a Table Cell

HTML Paragraphs are used to format text divided into sections. The Paragraphs in HTML are defined inside the < p > and < /p > tags. You can add Paragraphs to HTML Table Cells.

Put all together inside a Table.

tags-inside-table

The above image shows a Table contains Image, Link, List and Paragraph inside the Table Cells.

HTML Source Code :