From the course: HTML for Programmers

Unlock the full course today

Join today to access over 24,800 courses taught by industry experts.

Create an office hours schedule

Create an office hours schedule

From the course: HTML for Programmers

Create an office hours schedule

- [Instructor] You are a professor teaching computer science at a university. Each week, you hold office hours at certain times of the day where students from your class can visit you and ask questions about the course material. Given this mock up, create an office hour schedule using only html. Pause the video here and come back when you've coded your solution. Then we'll walk through the solution together. This office hour schedule is similar to the core schedule in the previous challenge except we have two headers, a top header row for the days of the week and a left header column for the times of day. We'll start by declaring the table element. Then we'll add our table header row. Since we have two headers, we won't use the T head element. The first cell in the table is an empty cell. We must declare this with an empty table data element. Then we can declare our days of the week as table headers. Since each day of the…

Contents