Conversation
Static SiteWhat We're Looking For
Great work overall! Site is attractive and easy to navigate, and HTML forms a clear tree structure. I especially like the way you've broken your CSS out into multiple files - that makes it easy to see what affects what. |
BrandiPhillips
left a comment
There was a problem hiding this comment.
Good use of html tags!! It is clear what each one is doing and how you have divided up the different sections of your pages. Also, your css naming is clear and relevant. Nice work!! I see a lot of repeating of css. I wonder if there is a way to minimize that, DRY it up a bit? I wonder the same for the html, like the header and footer...
| </ul> | ||
| </nav> | ||
| <h1>About Laura</h1> | ||
|
|
There was a problem hiding this comment.
One of the things I keep getting feed back on in my code at Zillow is being consistent with my use of white space. Here removing the white space after the h1 would make for neater code
| <img src="assets/pics/laura_salchipapa.jpg" alt="laura_photo"> | ||
| </section> | ||
| <section> | ||
|
|
There was a problem hiding this comment.
I noticed an empty 'p' tag above and assumed it was to create a visual separation. I am assuming its the same here. I am curious, is there a difference in the space provided by a 'section' vs a 'p'? If not, I would suggest being consistent with which one you use.
| </nav> | ||
| <h6> Copyright © 2017-Laura Melgarejo Silva</h6> | ||
| </footer> | ||
|
|
There was a problem hiding this comment.
I like the use of whitespace here to separate the footer section from the rest. I think it is good practice to have whitespace between different sections of code. :)
| </div> | ||
| </articule> | ||
| </main> | ||
|
|
There was a problem hiding this comment.
This closing 'main' indent is a little off from the opening main and extra whitespace here.
| margin-top: 26px; | ||
| } | ||
|
|
||
|
|
There was a problem hiding this comment.
Again, consistent use of whitespace. Also, I would suggest using some comments to section off the css so it is clear what parts the different groups correspond to like "Header", "Main","Footer". Also, are the css groups ordered in the same order as the html that they correspond to?
Static Site
Congratulations! You're submitting your assignment!
Comprehension Questions
<article>,<header>or<nav>, can certainly be the target of a CSS selector, but that's not their main benefit. These elements serve two purposes: they make your HTML easier for other human programmers to read, and they provide structure needed for assistive technologies like screen readers.