-
Notifications
You must be signed in to change notification settings - Fork 65
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
Rock - Nyckolle #55
base: master
Are you sure you want to change the base?
Rock - Nyckolle #55
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.
Heck yeah! You put a lot of fun energy into this portfolio! The only thing I can suggest is consider moving away from div
and use semantic HTML! It is better for accessibility, as well as search engines!
<div class="header"> | ||
<div id="navbar"> | ||
<a class="nav-link" href="index.html">HOME</a> | ||
<a class="nav-link" href="about.html">ABOUT</a> | ||
<a class="nav-link" href="contact.html">CONTACT</a> | ||
</div> | ||
</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.
let's use semantic tags here instead:
<div class="header"> | |
<div id="navbar"> | |
<a class="nav-link" href="index.html">HOME</a> | |
<a class="nav-link" href="about.html">ABOUT</a> | |
<a class="nav-link" href="contact.html">CONTACT</a> | |
</div> | |
</div> | |
<header class="header"> | |
<nav id="navbar"> | |
<a class="nav-link" href="index.html">HOME</a> | |
<a class="nav-link" href="about.html">ABOUT</a> | |
<a class="nav-link" href="contact.html">CONTACT</a> | |
</nav> | |
</header> |
we can also consider using an unordered list for the nav links! That's a common pattern you'll see
@@ -0,0 +1,123 @@ | |||
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&display=swap'); |
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.
👍 this is great styling!!!
Not quite finished, but will continue to push changes!