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

Sea Turtles - Nina G. #102

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open

Sea Turtles - Nina G. #102

wants to merge 9 commits into from

Conversation

anacapamu
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? No, but I was wondering if I had to upload each .html files separately or was there a more efficient way to go about it.
Why is it important to consider and use semantic HTML? Semantic HTML makes our code cleaner and more readable to other programmers and to bots that crawl web sites.
How did you decide to structure your CSS? I structured my CSS based on the HTML document - from the order top to bottom.
What was the most challenging piece of this assignment? Most challenging piece of the assignment is getting the CSS to do what I want, especially for spacing.
Describe one area that you gained more clarity on when completing this assignment The HTML validator helped me learn why I couldn't use tags such as sections without using h2-h6 in those sections.
Optional
Did you deploy to GitHub Pages? If so, what is the URL to your website? https://anacapamu.github.io/personal-portfolio-site/

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.

Great job Nina! I loved your main page and your secret page (loved the pics in the gallery) I added a few comments and please let me know if you have questions.


<body>
<main>
<div id="intro">
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of a div you can use a section tag here. You will see divs being used but sometimes there is a better alternative to use that is more semantic html. Here is a resource for that https://www.freecodecamp.org/news/semantic-html-alternatives-to-using-divs/

<nav>
<form action="./pages/about.html">
<button type="submit">learn more about me</button>
</form><br>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead of using the br tag you could add styling to your forms/buttons using the display property and give it a block value. Here is an example https://codepen.io/tgoslee1/pen/zYRWVGq

Comment on lines +28 to +29
<p id="quote"><q>I want to look back on my career and be proud of the
work, and be proud that I tried everything.</q> — Jon Stewart</p>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for quotes you can use the block quote tags or a few other tags. Here is a link to a few different ones you can try https://www.w3schools.com/html/html_quotation_elements.asp

</ul>
</nav>
</header>
<div id="about">
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see previous comment about divs

Comment on lines +32 to +33
<a href="https://github.com/anacapamu/odin-landing_page">GitHub</a> /
<a href="https://anacapamu.github.io/odin-landing_page/">Demo</a>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for links you can use the target attribute to open the links in a new tab

Suggested change
<a href="https://github.com/anacapamu/odin-landing_page">GitHub</a> /
<a href="https://anacapamu.github.io/odin-landing_page/">Demo</a>
<a href="https://github.com/anacapamu/odin-landing_page" target="_blank">GitHub</a> /
<a href="https://anacapamu.github.io/odin-landing_page/" target="_blank" >Demo</a>

</div>
</main>

<footer>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would add a way to get back to the other pages from this page

@@ -0,0 +1,51 @@
body {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🏽

@@ -0,0 +1,58 @@
body {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🏽

color: #e0c389;
}

main {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on your portfolio page your footer is overlapping your content. One way to fix this is by adding a height to your main tag. I tested it with height: 500px; and it worked. You can play around with the height value to get your desired look.

@@ -0,0 +1,28 @@
body {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🏽

<!DOCTYPE html>
<html lang="en">

<head>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make sure to move your index.html file into your pages directory

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