Basic HTML Table
Basic HTML Table 🌐 filename.html <table class="custom-table"> <thead> <tr> <th>#</th> <th>Name</th> <th>Email</th> <th>Status</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Abu Khoyer</td> <td>abu@email.com</td> <td>Active</td> </tr> <tr> <td>2</td> <td>Bornomala</td> <td>bornomala@email.com</td> <td>Inactive</td> </tr> </tbody> </table> CSS Styling 🎨 filename.css .custom-table { width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; } .custom-table th, .custom-table td { border: 1px solid #ddd; padding: […]


