HTML Table Style




HTML Table Style:

________________________________________________


<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>HTML Table Style</title> <style> table, th, td{ border: 10px solid yellow; border-radius: 20px; } th, td{ border-style: solid; border-color: red; } th{ background-color: blue; color:white; } td{ background-color: green; color: aqua; } </style> <!-- solid, dotted, groove, dashed, double, ridge, inset, outsed, hidden,none --> </head> <body> <table> <tr> <th>First Name</th> <th>Last Name</th> <th>Age</th> </tr> <tr> <td>Dark</td> <td>Hers</td> <td>99</td> </tr> <tr> <td>Mike</td> <td>Johnson</td> <td>26</td> </tr> <tr> <td>Jacob</td> <td>Miller</td> <td>56</td> </tr> </table> </body> </html>

_____________________________________________


Dark Hers

https://darkhers.blogspot.com

YouTube

https://youtube.com/@darkhers

Instagram

https://instagram.com/darkhers

Facebook

https://www.facebook.com/darkhers

TikTok

https://www.tiktok.com/@darkhers

Pinterest

https://www.pinterest.co.uk/darkhers

Twitter

https://twitter.com/Dark_Hers

 

Comments

Popular Posts