Posts

Showing posts with the label Free printable samples to learn HTML codes to create your own Web Pages (HTML TABLES)

Free printable samples to learn HTML codes to create your own Web Pages (HTML TABLES)

Image
Free practice samples to learn HTML codes Create Web Pages This is my 4rth blog post on HTML. In this part you will learn how to create table in HTML documents. Below you will also find some free practice questions. What is HTML TABLES?   Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). td stands for "table data," and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc. Table Example <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table> How the HTML code above looks in a browser: row 1, cell 1 row 1, cell 2 row 2, cell 1 row 2, cell 2 HTML Tables and...