-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
made an about page with a list of hobbies #117
base: master
Are you sure you want to change the base?
Conversation
…ior in the console only.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Personal Portfolio Site
What We're Looking For
Feature | Feedback |
---|---|
Baseline | |
Appropriate Git Usage | ✅ |
Answered comprehension questions | ✅ |
Page fully loads | ✅ |
No broken links (regular or images) | ✅ |
Includes at least 3 pages and styling | ✅ |
HTML | |
Uses the high-level tags for organization: header, footer, main |
✅ |
Appropriately using semantic tags: section, article , etc. |
Mostly |
All images include alternate text | ✅ |
CSS | |
Using class and ID names in style declarations | ✅ |
Style declarations are DRY | ✅ |
Overall | 💯 |
<main> | ||
<h1>About LP</h1> | ||
<section> | ||
<img src="../assets/me and booker.jpeg" alt="LP and their cat Booker relaxing at home"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spaces in links causes issues! This line threw an in an HTML validator
|
||
<main> | ||
Here are some books I recommend: | ||
<ul class = "list" id="bookList"></ul> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a </ul>
closing tag on this line, which closes the unordered list before any list items could be added! Errors were thrown here in the HTML validator.
<button id="addBookButton">Add Book</button> | ||
</section> | ||
<section id="bookContainer"> | ||
<h2 id = "bookCount">Book Count: 0</h2> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this is not intended to be a heading, but instead a counter for books. Consider using a different tag. Screen readers will get confused and think this is the heading for a new section of the page.
@@ -0,0 +1,53 @@ | |||
const state = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great start to using JS on your page!
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions
and
)