Responsive Event Booking Table using HTML & CSS

Responsive Event Booking Table using HTML & CSS
Hello developers, today in this blog, you'll learn how to create a Responsive Event Booking Table using HTML & CSS.

A layout that arranges its data into rows and columns. The table layout consists of several rows and columns in the table. You can create as many rows and columns as you need in the table.

In this blog (Responsive Event Booking Table), as you see on the webpage, there is a table with five columns and six rows. The first row of the table is considered to be the header line, where data or events can be entered in the upcoming rows. From the second row, data are listed. There is a column with a heading named Booking Status, that consists of buttons. The book now buttons appears to be indifferent color than the closed button. The table tag is used to create the table. The tr tag stands for table row, which helps to create an entire row of the table. The tr tag contains th tag and the td tag. The th tag stands for table heading whereas td tag stands for table data.

The source code of this Responsive Event Booking Table using HTML & CSS is given below, if you want the source code of this program, you can copy it. You can use this code of Responsive Event Booking Table with your creativity and can take this table to the next level.

Responsive Event Booking Table using HTML & CSS [Source Code]

To make this website, you would like to make two files: an HTML file & a CSS file. First, create an HTML file with the name of index.html and remember, you have to create a file with a .html extension.

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Event Booking-Responsive table || Learningrobo</title> <link rel="stylesheet" href="style.css"> </head> <body> <table class="table"> <thead> <tr> <th>Event Name</th> <th>Event Date</th> <th>Total Seats</th> <th>Seats Available</th> <th>Booking Status</th> </tr> </thead> <tbody> <tr> <td data-label="Event Name">Dance Program</td> <td data-label="Event Date">22/12/2021</td> <td data-label="Total Seats">20</td> <td data-label="Seats Available">12</td> <td data-label="Booking Status"><a href="#" class="btn btn__active">Book Now</a></td> </tr> <tr> <td data-label="Event Name">Music</td> <td data-label="Event Date">29/12/2021</td> <td data-label="Total Seats">15</td> <td data-label="Seats Available">5</td> <td data-label="Booking Status"><a href="#" class="btn btn__active">Book Now</a></td> </tr> <tr> <td data-label="Event Name">Craft</td> <td data-label="Event Date">19/12/2021</td> <td data-label="Total Seats">30</td> <td data-label="Seats Available">19</td> <td data-label="Booking Status"><a href="#" class="btn btn__active">Book Now</a></td> </tr> <tr> <td data-label="Event Name">Go Kart</td> <td data-label="Event Date">10/12/2021</td> <td data-label="Total Seats">5</td> <td data-label="Seats Available">0</td> <td data-label="Booking Status"><a href="#" class="btn btn__pledged">closed</a></td> </tr> <tr> <td data-label="Event Name">Designing</td> <td data-label="Event Date">1/12/2021</td> <td data-label="Total Seats">10</td> <td data-label="Seats Available">0</td> <td data-label="Booking Status"><a href="#" class="btn btn__pledged">closed</a></td> </tr> </tbody> </table> <div class="credit">Made with <span style="color:tomato;font-size:20px;">❤</span> by <a href="https://www.learningrobo.com/">Learning Robo</a></div> </body> </html>
CSS provides style to an HTML page. To make the page attractive create a CSS file with the name style.css and remember that you have to make a file with a .css extension.


body {
  font-family: "Roboto", sans-serif;
  background: #FDC830;  
background: -webkit-linear-gradient(to right, #F37335, #FDC830);  
background: linear-gradient(to right, #F37335, #FDC830); 

}
.table {
  margin: 20px auto;
  width: 90%;
  border-spacing: 0;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 10px;
  background-color: #12192c;
}
.table th {
  font-weight: 300;
  font-size: 16px;
  color: #FDC830;
  line-height: 26px;
  padding: 18px 30px;
}
.table thead tr {
  background: #12192c;
  
}
.table td {
  padding: 30px 10px;
  font-weight: 300;
  font-size: 16px;
  color: black-2;
  line-height: 26px;
  text-transform: uppercase;
  color:#fff
}
.table tbody tr:nth-child(odd) {
  background: #002147;
}
.table tbody tr:nth-child(even) {
  background: #12192c;
}
.table__wrapper {
  padding-top: 40px;
}
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  width: 170px;
  text-align: center;
  padding: 10px;
  border-radius:10px;
  transition: 0.3s ease;
  text-decoration: none;
}
.btn:hover {
  color: white;
}
.btn__active {
  color: #4ed99c;
  border: 2px solid #4ed99c;
}
.btn__active:hover {
  background: #4ed99c;
}
.btn__pledged {
  color: #f14044;
  border: 2px solid #f14044;
}
.btn__pledged:hover {
  background: #f14044;
}
@media (max-width: 768px) {
  .table td {
    display: block;
    text-align: right;
  }
  .table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
  }
  .table thead display none tr {
    margin-bottom: 30px;
    display: block;
  }
}

.credit a{
  text-decoration: none;
  color: #000;
  font-weight: 800;
  }
  
  .credit {
      text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 10px;
  }
We hope you would like this Responsive Event Booking Table using HTML & CSS.

Thank you for reading our blog. If you face any problem in creating this Responsive Event Booking Table using HTML & CSS, then contact us or comment us. We’ll try to provide a solution to your problem as soon as possible.

Thank you
Learning robo team

إرسال تعليق

Thank you
Learning robo team

Post a Comment (0)

أحدث أقدم
Learning Robo says...
code copied
Welcome