-
Notifications
You must be signed in to change notification settings - Fork 93
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
Leticia-cedar #68
base: master
Are you sure you want to change the base?
Leticia-cedar #68
Conversation
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 on this create HTML/CSS project. Per our conversation, it is best practice to use class names and ids to style elements, rather than default browser styling for html elements.
<h2> A little bit about me...</h2> | ||
<section> |
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.
Minor note: Consider including this <h2>
within the <section>
. An html validator had this to say (https://www.freeformatter.com/): "Section lacks heading. Consider using “h2”-“h6” elements to add identifying headings to all sections.
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.
or we could use a <p>
tag with a class name to apply styling
<p class="about-me-paragraph"> Lorem ipsum </p>
<body> | ||
|
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 tag is used differently on the different pages. A good convention to follow is organizing each page wth a
, then , then<h3> | ||
Click below to view some of my work on GitHub. | ||
</h3> |
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.
<h3> | |
Click below to view some of my work on GitHub. | |
</h3> | |
<h2 class="subheading"> | |
Click below to view some of my work on GitHub. | |
</h2> |
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions