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

Rock - Nyckolle #55

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

Rock - Nyckolle #55

wants to merge 2 commits into from

Conversation

NLucuab
Copy link

@NLucuab NLucuab commented Jun 8, 2021

Not quite finished, but will continue to push changes!

Copy link

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

Comment on lines +11 to +17
<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>

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:

Suggested change
<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');

Choose a reason for hiding this comment

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

👍 this is great styling!!!

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