Anna townsend#1
Conversation
jheinz1999
left a comment
There was a problem hiding this comment.
You're on the right track, but still have a little bit of work to do. Keep working hard, you're almost there!
| Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment. | ||
|
|
||
| <header> | ||
| <div class=topOfAbout> |
There was a problem hiding this comment.
This div may not be necessary, as it is the only child of the header tag
| <nav class=topNavAbout> | ||
| <a href="">Home</a> | ||
| <a href="about.html">About</a> | ||
| </html>Products</a> |
There was a problem hiding this comment.
looks like a typo, but you don't want to end your tag here!
| </div> | ||
| </header> | ||
|
|
||
| <div class="container about-page"> |
There was a problem hiding this comment.
This container could even go up above the header so it contains all of your content
|
|
||
| <div class="container about-page"> | ||
| <section class='topAboutPage'> | ||
| <div> |
There was a problem hiding this comment.
this div may not be necessary
| <p class='aboutP'>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</p> | ||
| </div> | ||
| </section> | ||
| <div class='strategyImg'> |
There was a problem hiding this comment.
Same goes for this div - because the image is the only child, there is no need to wrap it in a div
| <p class="strategyP"> Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.</p> | ||
|
|
||
| <button>Learn More</button> | ||
| </section> |
There was a problem hiding this comment.
You are ending your section tag before the div tag, but the div tag is a child of the section tag
| <div> | ||
| <img src="img/about-working.png" alt="strategy"> | ||
| </div> | ||
| <div class='howWeWorkContent'> |
There was a problem hiding this comment.
It may not be necessary to have a section tag inside of a div tag, as the section is the only child
| } | ||
|
|
||
| .topOfHomePage{ | ||
| display: flex; |
| <div class="box">Box 8</div> | ||
| <div class="box">Box 9</div> | ||
| <div class="box">Box 10</div> | ||
| <div class="box" style='background-color: teal;'>Box 1</div> |
There was a problem hiding this comment.
For these boxes, we are actually looking for the use of selectors in your index.css file as opposed to the style property in HTML
Heyoo