Display your wedding events in a beautiful, organized schedule table
The Event Schedule feature allows you to display all wedding events with dates, times, locations, and descriptions in a clean, responsive table format.
Set up the basic HTML structure with a header and main article section:
<article id="main"> <header> <h2>Schedule</h2> <p>Find the detailed list of events, location inside the venue and hints on the dress code.</p> </header> <section class="wrapper style5"> <div class="inner"> <!-- Schedule content goes here --> </div> </section></article>
2
Build the Schedule Table
Create a table with date and description columns:
<div class="table-wrapper"> <table> <thead> <tr> <th>Date</th> <th>Description</th> </tr> </thead> <tbody> <!-- Event rows go here --> </tbody> </table></div>
3
Add Event Rows
Each event is a table row with date and detailed information:
<tr> <td>Thursday, May 5th, 2022</td> <td> <b>Vara Pooja & Sangeeth</b> <br /> The Sanskrit word sangeet roughly translates to "sung together". Traditionally, this ceremony was meant for the female guests on both sides of the family to come together for a night of song.<br /> <br /> <b>Time </b> : <i>5:00 PM onwards </i> | <b>Location </b> : <i>Nakshathra</i> | <b>Dress Code </b> : <i>Colorful, Festive Attire</i> </td></tr>
4
Add Embedded Forms (Optional)
You can embed Google Forms or other signup sheets for event participation:
List all events for a single day together, only showing the date once in the first row. This makes the schedule easier to scan and more visually organized.
Provide Cultural Context
For traditional ceremonies, include brief explanations of their significance. This helps guests understand the importance of each event and what to expect.
Be Clear About Timing
Use phrases like “onwards” for flexible start times, or specify exact times for ceremonies that must begin promptly.
Link to Related Pages
Add anchor links to signup forms, RSVP pages, or additional details about specific events.