-
Notifications
You must be signed in to change notification settings - Fork 65
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
Paper, Ruthie Newman #65
base: master
Are you sure you want to change the base?
Conversation
…and navigation bar to style.css.
…of home page. Populates about page. Adds file contact.html to root folder.
…l and contact.html.
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.
Nice work Ruthie, I like the layout of the homepage and the rollover effects. The site looks pretty good, but you did reuse a number of ids, which are suppose to be unique.
<div class="contact-form-container"> | ||
<form> | ||
|
||
<label for="first-name">First Name</label> |
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.
The for
attribute must match the id
of a form control (an input or something).
<div class="portfolio-project-wrapper"> | ||
<ol id="p-github-ul"> | ||
<li id="p-github-li"><a id="portfolio-github-link" href="https://github.com/AdaGold/video-store-cli.git">Video Store CLI</a></li> | ||
<ul class="p-desc-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.
You can't make a ul
as a direct child of an ol
<section class="grid-section"> | ||
<h1 id="portfolio-h1">Recent Projects:</h1> | ||
<div class="portfolio-project-wrapper"> | ||
<ol id="p-github-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.
You seem to have a lot of elements with this id
. Ids are supposed to be unique. Make this a class instead maybe.
</p> | ||
</li> | ||
</ul> | ||
<li id="p-github-li"><a id="portfolio-github-link" href="https://github.com/AdaGold/retro-video-store.git">Video Store API</a></li> |
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.
Another duplicate id.
No description provided.