-
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
Sea Turtles - Nina G. #102
base: master
Are you sure you want to change the base?
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 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"> |
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.
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> |
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.
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
<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> |
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.
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"> |
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.
see previous comment about divs
<a href="https://github.com/anacapamu/odin-landing_page">GitHub</a> / | ||
<a href="https://anacapamu.github.io/odin-landing_page/">Demo</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.
for links you can use the target attribute to open the links in a new tab
<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> |
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 would add a way to get back to the other pages from this page
@@ -0,0 +1,51 @@ | |||
body { |
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.
👍🏽
@@ -0,0 +1,58 @@ | |||
body { |
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.
👍🏽
color: #e0c389; | ||
} | ||
|
||
main { |
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.
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 { |
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.
👍🏽
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> |
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.
make sure to move your index.html file into your pages directory
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions