Question: Recreate the following table below using HTML and CSS , NO BOOTSTRAP classes allowed: - Recreate table with various TV show listings using semantic elements

Recreate the following table below using HTML and CSS, NO BOOTSTRAP classes allowed:
- Recreate table with various TV show listings using semantic elements
- When user hovers over row, only the channel content is highlighted. i.e: only the time listings are highlighted when hovering over CBS row or elements in row themselves not time/channels photo 3 shows an example
CSS custom properties:
*{
box-sizing: border-box;
}
:root {
--black: #080808;
--white: #fefefe;
--gray: #565656;
--teal: #006060;
--violetred: #a2106d;
--orange: #ffa500;
}
body {
font-family: "Open Sans", "Helvetica Neue", sans-serif;
font-size: 1.2em;
color: var(--black);
}
h1{
text-align: center;
}
form {
width: 400px;
}
Recreate the following table below using HTML and

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!