HTML and CSS - 08

In this post, we are going to learn about how to create HTML tables. Since this is a bit important and a bit complex I will add step-by-step HTML scripts So that you can do it with me. <!DOCTYPE html> <html> <head> <meta charset= "UTF-8" > <title> Table example </title> </head> <body> <table width= "100%" border= "1" bordercolor= "blue" cellspacing= "2" cellpadding= "2" > </table> </body> </html> let's see each and each attributes used. Width ----> Width of the table. you can give a percentage value or a metric value for this. We will talk about other options later. border ----> Thikness of the border. Change the values and see how the border behaves. bordercolor ---> Colour of the border. cellspacing ----> Table have cells. this attribute places spacing around data within each cell cellpaddin...