-
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
Cedar Rae #73
base: master
Are you sure you want to change the base?
Cedar Rae #73
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 job!
A few things that were a little funky but overall things look really good!
<div class="intro"> | ||
<h1>About Me</h1> | ||
</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.
A <header>
would have been more appropriate here:
<div class="intro"> | |
<h1>About Me</h1> | |
</div> | |
<header class="intro"> | |
<h1>About Me</h1> | |
</header> |
<div class="git-link"> | ||
<button onclick="window.location.href='https://github.com/raeelwell';"">GitHub</button> | ||
</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.
While the button is cool it's probably overkill to do an onclick
:
You can do something similar by just wrapping the button in a link:
<div class="git-link"> | |
<button onclick="window.location.href='https://github.com/raeelwell';"">GitHub</button> | |
</div> | |
<a href="https://github.com/raeelwell" class="git-link"> | |
<button>GitHub</button> | |
</a> |
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions