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

update pull request #99

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

update pull request #99

wants to merge 1 commit into from

Conversation

sanzcrpt
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?

Comment on lines +28 to +30
<br></a>
<br></a>
<br></a>
Copy link

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>

Copy link

@tgoslee tgoslee left a 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>
Copy link

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>
Copy link

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 {
Copy link

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 {....}

Comment on lines +156 to +158
/* .gallery {
background: #EEE;
} */
Copy link

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>
Copy link

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>
Copy link

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.

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