In this Try It Together activity, you'll be code builders! Now that you have a refactored semantic HTML codebase, why not go a little further by adding some semantic styling and a few more sections.
- Bold Intro: Make Chris Doe's name stand out.
- Enhanced About Me: Add details to Chris' career journey.
- Highlight Expertise: Emphasize key roles using semantic tags.
- Organize Content: Nest sections for better structure.
- Showcase Projects: Create a "Recent Projects" section with an unordered list.
Attention: When you complete a task, put an x in the middle of the brackets to mark it off your ToDo list.
- Navigate to the
index.htmlfile. - On line 23, make the copy
I'm Chris Doe!bold wrapping the copy in the correct semantic HTML tag. Remember how the screen reader will read the tag. - After the
I'm Chris Doecopy, paste the following copy to make the paragraph tag more robust:Throughout my career, I've worn multiple hats in the web development industry. As a Front-End Developer, I meticulously crafted pixel-perfect user interfaces for various clients. During my tenure as a UX Designer, I focused on creating intuitive and delightful user experiences. As a Full-Stack Engineer I built robust web applications from the ground up. Additionally, I've freelanced on diverse projects, ranging from e-commerce sites to personal blogs. My journey also includes a stint as a Production Assistant at Webflix Studios, where I contributed to video production and multimedia content creation. - Next, emphasize the following five word pairs using the appropriate sematic HTML tag in the copy above:
- Front-End Developer
- UX Designer
- Full-Stack Engineer
- Production Assistant
- Webflix Studios
<p>Throughout my career, I've worn multiple hats in the web development industry. As a <em>Front-End Developer</em>,</p>- Next ,inside the
<main>container with 1<section>element, put one more<section>under the first<section>. - Inside the second
<section>element, put a subheader element with the copy:Recent Projects. - Under that, put a paragraph element with the copy:
Check out some of my recent work: - Now, copy and paste the unordered list in the
About mesection under the last paragraph tag and refactor the copy in the elements as follows:- Change the first list tag from
XtoPortfolio Website. - Change the second list tag from
LinkedIntoE-commerce Site. - Change the third list tag from
GitHubtoBlog Platform.
- Change the first list tag from
π Fantastic work! You just used AI to refactor HTML to Semantic HTML! ππ»πΊπΎ π
π Only use this as a reference π
πΎ Not something to copy and paste πΎ
Note: This lab references a solution file located here (link not shown).
