-
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
Cheetahs - Alyssa R. #112
base: master
Are you sure you want to change the base?
Cheetahs - Alyssa R. #112
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.
Great work on this project Alyssa! This project is green.
</div> | ||
</div> | ||
<!-- Content --> | ||
<div class="container"> |
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.
I recommend using a semantic tag like <main>
here:
<div class="container"> | |
<main class="container"> |
<body> | ||
|
||
<section class="page"> |
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 <section>
tag is not super well defined, it's intended for "sections of a document", but generally it's used with the <article>
tag to group text content. In this case, where you're wrapping the entire page in a section, I recommend pulling the class up to the <body>
tag and removing the <section>
:
<body class="page">
.container ul { | ||
display: flex; | ||
flex-wrap: nowrap; | ||
} |
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.
👍
@@ -0,0 +1,43 @@ | |||
.portfolio { | |||
display: grid; |
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 use of grid!
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions