Untitled
unknown
plain_text
5 months ago
1.3 kB
3
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Table</title> <link rel="stylesheet" href="style.css"> </head> <body> <table> <tr> <th>Sl No.</th> <th>Name</th> <th>Age</th> </tr> <tr> <td>01</td> <td>Mrutyunjaya</td> <td>21</td> </tr> <tr> <td>02</td> <td>BhanuPrakash</td> <td>22</td> </tr> <tr> <td>03</td> <td>Anonymous</td> <td>16</td> </tr> </table> </body> </html> *{ margin: 0; padding: 0; } body{ height: 100vh; background-color: bisque; display: flex; align-items: center; justify-content: center; } table{ border-style: solid; border-color: cadetblue; font-family: 'Times New Roman', Times, serif; border-radius: 5px; } th,td{ background-color: red; text-align: center; font-size: 2rem; padding: 25px; flex-direction: column; transition: 0.5s; } th:hover{ background-color: yellow; } td:hover{ background-color: green; color: white; }
Editor is loading...
Leave a Comment