Queues - Elizabeth Deutsch - Static-Site#18
Queues - Elizabeth Deutsch - Static-Site#18edeutschie wants to merge 5 commits intoAda-C7:masterfrom
Conversation
…ut html. clean up.
Static SiteWhat We're Looking For
|
|
Great work! Your use of semantic HTML is excellent, as is your organization of the HTML and CSS files. The site is visually pleasing and engaging. Make sure to keep working on committing early and often. Here's an article I've found helpful for writing strong commit messages. Also, nice job using percentages instead of pixels. You can avoid a lot of weird looking formatting for your users if you continue that practice. |
| <section id="hero"> | ||
| <h1>Elizabeth Deutsch</h1> | ||
| <p>Elizabeth is a junior developer and Seattle native.</p> | ||
| <!-- <p>A current student at Ada Developer's Academy</p> --> |
There was a problem hiding this comment.
In future PRs or Code Reviews, feel free to delete any commented out/unused code.
| <ul> | ||
| <li class="contents"><a href="https://github.com/Ada-C7/Word-Guess/pull/11"><img src="assets/Ducks_Dark.png" alt="ASCII art of ducks"/></a></li> | ||
| <li class="contents"><a href="https://github.com/edeutschie/meowspace"><img class="img-circle" src="assets/cat.jpg" alt="cat photo"/></a></li> | ||
| <li class="contents"><a href="https://github.com/edeutschie/ride-share-two"><img src="assets/wheel.png" alt="photo of steering wheel"/> </a> </li> |
There was a problem hiding this comment.
Excellent semantic HTML throughout the project!
| </ul> | ||
| </nav> | ||
| </header> | ||
|
|
There was a problem hiding this comment.
Nice use of whitespace and proper indentation to help maintain readability.
| height: 75px; | ||
| } | ||
|
|
||
| #portfolio img { |
There was a problem hiding this comment.
The styling you chose for the images is really nice!
| footer { | ||
| margin-top: 8%; | ||
| margin-bottom: 1%; | ||
| } |
There was a problem hiding this comment.
You may want to consider centering the footers on each page.
| <h1>Portfolio</h1> | ||
| <p>A sampling of recent projects at Ada Developer's Academy</p> | ||
| <ul> | ||
| <li class="contents"><a href="https://github.com/Ada-C7/Word-Guess/pull/11"><img src="assets/Ducks_Dark.png" alt="ASCII art of ducks"/></a></li> |
There was a problem hiding this comment.
I agree with Jamie's comment about the titles. It would be cool to see a brief description of the link before clicking. Also, :hover is nice because it makes it obvious to people that the image is a link as well. You could change the border color, the image size, or have the title appear when hovering over an image.
| @@ -0,0 +1,116 @@ | |||
| @import url('https://fonts.googleapis.com/css?family=Slabo+27px'); | |||
| @@ -0,0 +1,116 @@ | |||
| @import url('https://fonts.googleapis.com/css?family=Slabo+27px'); | |||
|
|
|||
There was a problem hiding this comment.
Your organization of CSS files is great!
| margin-left: 3%; | ||
| } | ||
|
|
||
| .emoji:hover::before { |
There was a problem hiding this comment.
I like the hover emoji you have here. It's makes it really clear that these are links, and it's cute.
| .contents a { | ||
| text-decoration: none; | ||
| } | ||
|
|
There was a problem hiding this comment.
You may want to consider putting more space between the links, so when you hover over one, it doesn't displace the others with the emoji.
Static Site
Congratulations! You're submitting your assignment!
Comprehension Questions