-
Notifications
You must be signed in to change notification settings - Fork 110
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
update pull request #99
base: master
Are you sure you want to change the base?
Conversation
<br></a> | ||
<br></a> | ||
<br></a> |
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 don't think you need these closing a tags. If you want to add a break you can just have <br>
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 like your portfolio and the emoji you added. I like how the nav bar navigates you to different parts of the website. I left a few comments on how you can refactor a few things. Let me know if you have any questions.
|
||
</section> | ||
<section id="about"> | ||
<div> |
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 nothing wrong with using div but we want to use semantic html when we can. Because you already have a section tag you don't need this div tag. You can just have
<section>
<h1>
<p>
....
</section> | ||
|
||
<section id="portfolio"> | ||
<div> |
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.
same here you don't need this div
background-color: #14FFEC; | ||
} | ||
|
||
#portfolio { |
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.
portfolio and home have the same background color. You can do #home, #portfolio {....}
/* .gallery { | ||
background: #EEE; | ||
} */ |
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 remove this
<li><a href="#home" class="active">home</a></li> | ||
<li><a href="#about">about me</a></li> | ||
<li><a href="#portfolio">porfolio</a></li> | ||
<li><a href="SanRSWEResume.html">resume</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.
You can add target="_blank"
to your a tag and it will open your resume in a new tab so the user can stay on your website.
@@ -0,0 +1,62 @@ | |||
<!DOCTYPE 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.
move your index.html and resume to your pages directory. You should also move your emoji into your assets directory and your styles.css into a styles directory. This will keep everything organized.
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions