Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Cedar Rae #73

wants to merge 1 commit into from

Conversation

raeelwell
Copy link

Personal Portfolio Site

Congratulations! You're submitting your assignment!

Comprehension Questions

Question Answer
Did you have to resolve any issues when running the HTML Validator? If so, what were they?
Why is it important to consider and use semantic HTML?
How did you decide to structure your CSS?
What was the most challenging piece of this assignment?
Describe one area that you gained more clarity on when completing this assignment
Optional
Did you deploy to GitHub Pages? If so, what is the URL to your website?

Copy link

@kaidamasaki kaidamasaki left a 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!

Comment on lines +15 to +17
<div class="intro">
<h1>About Me</h1>
</div>

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:

Suggested change
<div class="intro">
<h1>About Me</h1>
</div>
<header class="intro">
<h1>About Me</h1>
</header>

Comment on lines +23 to +25
<div class="git-link">
<button onclick="window.location.href='https://github.com/raeelwell';"">GitHub</button>
</div>

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:

Suggested change
<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>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants