Menu
Coddy logo textTech

Event Details Section

Part of the Fundamentals section of Coddy's HTML journey — lesson 54 of 60.

challenge icon

Challenge

Easy

After the header section, create a <div> for the event details. Inside it, add an <h2> tag with the text "Event Schedule" and a <table> to display the schedule. The table should include columns for time, activity, and location, along with a few example rows.

For example:

TimeActivityLocation
10:00 AMWelcome SpeechMain Hall
11:00 AMWorkshop: Intro to HTMLRoom A

Bonus: add the attribute border="1" to table to add border to it!

Try it yourself

<!DOCTYPE html>
<html>
    <body>
        <!-- Write code here -->
    </body>
</html>

All lessons in Fundamentals