Event Details Section
Part of the Fundamentals section of Coddy's HTML journey — lesson 54 of 60.
Challenge
EasyAfter 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:
| Time | Activity | Location |
|---|---|---|
| 10:00 AM | Welcome Speech | Main Hall |
| 11:00 AM | Workshop: Intro to HTML | Room 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
2Text and Formatting
HeadingsParagraphsLine BreaksBold and Italic TextBold and Italic AgainRecap - Formatting8Forms and Inputs Part 1
Form BasicsText InputsInput AttributesPassword FieldLabels for InputsRecap - Basic Form11Event Registration Page
Project OverviewHeader Section9Forms and Inputs Part 2
Radio ButtonsCheckboxesDropdownsButtonsButtons in FormsRecap - Forms #1Recap - Forms #2