-
Notifications
You must be signed in to change notification settings - Fork 47
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
STHOMAS_C10 Nodes #41
base: master
Are you sure you want to change the base?
Conversation
Personal Portfolio SiteWhat We're Looking For
|
|
||
<body> | ||
|
||
<div class="header"> |
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.
Instead of using div
elements it's preferred to use semantic tags like in this case header
.
<p> <h3>"Engineer Me"</h3></p> | ||
</div> | ||
|
||
<div class="topnav"> |
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 would use the nav
element instead.
<p> <h3>"Favorite Art Portfolio"</h3></p> | ||
|
||
</header> | ||
<nav class="nav"> |
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.
Good use of semantic tags here!
} | ||
|
||
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */ | ||
@media screen and (max-width: 800px) { |
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 Media Query!
<h3>Starting at ADA</h3> | ||
<!-- <div> --> | ||
<class="Ada"> | ||
<img src= "/Users/ada/Documents/HTML_CSS/personal-portfolio-site/images/Ada Developers Academy_files/program.png"/> |
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.
no alt
attribute.
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions