oldoc63 / learningFS

Web development back and front
0 stars 0 forks source link

Semantic HTML Elements #907

Open oldoc63 opened 2 years ago

oldoc63 commented 2 years ago
oldoc63 commented 2 years ago
  1. The header of this website is wrapped in a div with the id header. In index.html, remove this div and wrap this section with opening and closing

    tags instead.

  2. The CSS no longer functions correctly because we changed the name of the element. In style.css, change the #header selector to header.

  3. The navigation of this website is wrapped in a div with the id nav. In index.html, remove this div and wrap this section with opening and closing <nav> tags instead.

  4. Once again, we’ll have to update the CSS stylesheet since we modified the HTML. In style.css, change all three #nav selectors to nav.

  5. The footer of this website is wrapped in a div with the id footer. In index.html, remove this div and wrap this section with opening and closing

    tags instead.

  6. Let’s update the CSS stylesheet one more time. In style.css, change both #footer selectors to footer.