From 2b5ada9c4076e458948d364c1950e28a2c730a4b Mon Sep 17 00:00:00 2001 From: Heather Faerber Date: Fri, 19 Jul 2024 09:35:08 -0700 Subject: [PATCH] Minor wording edits and add refactoring step --- module2/intermission_work/dog_party.md | 71 ++++++++++++++++++-------- 1 file changed, 50 insertions(+), 21 deletions(-) diff --git a/module2/intermission_work/dog_party.md b/module2/intermission_work/dog_party.md index 0a4a625d..987f2469 100644 --- a/module2/intermission_work/dog_party.md +++ b/module2/intermission_work/dog_party.md @@ -3,7 +3,7 @@ title: Dog Party --- ## Overview -Welcome to the Dog Party project! As a software developer, you’ll often need to build user interfaces (UI) based on[comps](https://en.wikipedia.org/wiki/Comprehensive_layout) provided by a designer. In this project, you’ll create a one-page static site to practice writing well-structured, semantic HTML and clean, precise CSS. +Welcome to the Dog Party project! As a software developer, you’ll often need to build user interfaces (UI) based on [comps](https://en.wikipedia.org/wiki/Comprehensive_layout) provided by a designer. In this project, you’ll create a one-page static site to practice writing well-structured, semantic HTML and clean, precise CSS. We’ve provided a design comp and a set of technical specifications. Your challenge is to build the site according to these requirements. @@ -65,15 +65,19 @@ In here you are seeing the basic outline of the HTML you will need to start with - The `` This line links the HTML document to an external CSS file named "style.css". It allows the HTML to use the styles defined in "style.css" for layout and design. - The `` element is the container for all the content on the page. Wow that's a lot of code, but it's all very important. -let's move on to adding more content to our HTML file. But before we do that, let's talk about how to look at our page in the browser. -
-## Viewing Your HTML File in the Browser +Let's move on to adding more content to our HTML file. But before we do that, let's talk about how to look at our page in the browser. + + @@ -178,7 +182,7 @@ To do this we are going to need to use a `section` tag. After making one dog div, it looks like we need to add the rest of our dogs, which they all kind of look similar, only the image and the description is different. I'll let you add those dog-info divs to your work.