diff --git a/exercise-1-semantic-refactor/src/DivSoupPage.jsx b/exercise-1-semantic-refactor/src/DivSoupPage.jsx index d322d70..7bec08c 100644 --- a/exercise-1-semantic-refactor/src/DivSoupPage.jsx +++ b/exercise-1-semantic-refactor/src/DivSoupPage.jsx @@ -3,69 +3,75 @@ import React from 'react'; function DivSoupPage() { return (
Semantic HTML is the foundation of accessible web development. It provides meaning to your content, making it easier for screen readers, search engines, and developers to understand your page structure. -
When you use semantic elements, you're not just styling your page—you're creating a meaningful document structure that benefits everyone. -
This page is intentionally built with divs to demonstrate what NOT to do. Your task is to refactor it using proper HTML elements. -