How to Create a Data table design

How to Create a Data table design

index.html and styles.css files for better structure, readability, and maintainability.

index.html

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Customer Details</title> <!-- Fonts & Icons --> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto"> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"> <link rel="stylesheet" href="styles.css"> <!-- Custom CSS --> <!-- jQuery & Bootstrap Scripts --> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script> <script> $(document).ready(function(){ $('[data-toggle="tooltip"]').tooltip(); }); </script> </head> <body> <div class="container-xl"> <div class="table-responsive"> <div class="table-wrapper"> <div class="table-title"> <div class="row"> <div class="col-sm-8"> <h2>Customer <b>Details</b></h2> </div> <div class="col-sm-4"> <div class="search-box"> <i class="material-icons">&#xE8B6;</i> <input type="text" class="form-control" placeholder="Search&hellip;"> </div> </div> </div> </div> <table class="table table-striped table-hover table-bordered"> <thead> <tr> <th>#</th> <th>Name <i class="fa fa-sort"></i></th> <th>Address</th> <th>City <i class="fa fa-sort"></i></th> <th>Pin Code</th> <th>Country <i class="fa fa-sort"></i></th> <th>Actions</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Thomas Hardy</td> <td>89 Chiaroscuro Rd.</td> <td>Portland</td> <td>97219</td> <td>USA</td> <td> <a href="#" class="view" title="View" data-toggle="tooltip"><i class="material-icons">&#xE417;</i></a> <a href="#" class="edit" title="Edit" data-toggle="tooltip"><i class="material-icons">&#xE254;</i></a> <a href="#" class="delete" title="Delete" data-toggle="tooltip"><i class="material-icons">&#xE872;</i></a> </td> </tr> <!-- Add more rows as needed --> </tbody> </table> <div class="clearfix"> <div class="hint-text">Showing <b>5</b> out of <b>25</b> entries</div> <ul class="pagination"> <li class="page-item disabled"><a href="#"><i class="fa fa-angle-double-left"></i></a></li> <li class="page-item"><a href="#" class="page-link">1</a></li> <li class="page-item active"><a href="#" class="page-link">2</a></li> <li class="page-item"><a href="#" class="page-link">3</a></li> <li class="page-item"><a href="#" class="page-link"><i class="fa fa-angle-double-right"></i></a></li> </ul> </div> </div> </div> </div> </body> </html>

styles.css

/* General Styles */ body { color: #566787; background: #f5f5f5; font-family: 'Roboto', sans-serif; display: flex; justify-content: center; background-image: url('image_background.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; background-attachment: fixed; } /* Table Container */ .table-responsive { margin: 30px 0; } .table-wrapper { min-width: 1000px; background: #fff; padding: 20px; box-shadow: 0 1px 1px rgba(0,0,0,.05); } /* Table Title */ .table-title { padding-bottom: 10px; margin: 0 0 10px; min-width: 100%; } .table-title h2 { margin: 8px 0 0; font-size: 22px; } /* Search Box */ .search-box { position: relative; float: right; } .search-box input { height: 34px; border-radius: 20px; padding-left: 35px; border-color: #ddd; box-shadow: none; } .search-box input:focus { border-color: #3FBAE4; } .search-box i { color: #a0a5b1; position: absolute; font-size: 19px; top: 8px; left: 10px; } /* Table Styles */ table.table tr th, table.table tr td { border-color: #e9e9e9; } table.table-striped tbody tr:nth-of-type(odd) { background-color: #fcfcfc; } table.table-striped.table-hover tbody tr:hover { background: #f5f5f5; } table.table th i { font-size: 13px; margin: 0 5px; cursor: pointer; } table.table td:last-child { width: 130px; } /* Action Icons */ table.table td a { color: #a0a5b1; display: inline-block; margin: 0 5px; } table.table td a.view { color: #03A9F4; } table.table td a.edit { color: #FFC107; } table.table td a.delete { color: #E34724; } table.table td i { font-size: 19px; } /* Pagination */ .pagination { float: right; margin: 0 0 5px; } .pagination li a { border: none; font-size: 95%; width: 30px; height: 30px; color: #999; margin: 0 2px; line-height: 30px; border-radius: 30px !important; text-align: center; padding: 0; } .pagination li a:hover { color: #666; } .pagination li.active a { background: #03A9F4; } .pagination li.active a:hover { background: #0397d6; } .pagination li.disabled i { color: #ccc; } .pagination li i { font-size: 16px; padding-top: 6px; } .hint-text { float: left; margin-top: 6px; font-size: 95%; }

Improvements:

Separation of HTML & CSS - Easier to manage
Formatted Code - Improved readability
Clean Structure - Easy to modify and scale
Fixed Layout Issues - Optimized for better responsiveness

Soeng Souy

Soeng Souy

Website that learns and reads, PHP, Framework Laravel, How to and download Admin template sample source code free.

Post a Comment

CAN FEEDBACK
close