Tables | HTML: Tables are used to organize the data in well understanding manner. Here is the tables.html: <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <title>Tables in Html</title> </head> <body> <table border="5px" bordercolor="green" width="50%"> <caption><h3><b>Students Details</b></h3></caption> <tr> <th>Id</th> <th>Name</th> <th>Branch</th> </tr> <tr> <td>001</td> <td>Abc</td> <td>25</td> </tr> </table> </body> </html> Web view of Html: H...