18 Comments
Oct 26, 2021Liked by Jen Kramer

https://codepen.io/keoverto/pen/oNeWoWm I'm confused on why each header isn't under it's content

Expand full comment
author

You never closed your UL's, so you just keep indenting another level 😁

Expand full comment
Sep 20, 2021Liked by Jen Kramer

https://codepen.io/miklaan/pen/ExXLpmm

I wanted horizontal navbar, so I enjoyed during making the one like this.

Expand full comment
author

πŸ¦‘ πŸ™ πŸ¦‘ Well THAT is a super fun approach! Looks great, markup is excellent, and the outcome is awesome. Nice work and thanks for sharing!

Expand full comment

https://codepen.io/romola/pen/dyRdqeX?editors=1100

This could have been taken further, but I mostly enjoyed working with colors, adding a few links to give the idea of how it works.

Expand full comment
author

πŸ¦‘ πŸ™ πŸ¦‘ Wow! Super well done - the HTML looks fantastic, and I love all of your color choices to distinguish the mollusk groups. Great work and thanks for sharing!

Expand full comment
Sep 19, 2021Liked by Jen Kramer
author

πŸ¦‘ πŸ™ πŸ¦‘ Looks fantastic! There are some issues with your HTML though.

a. Don't skip levels in your headings. If you want smaller headings, use CSS. Here you've gone from H1 to h4. You can read more here: https://jen4web.substack.com/p/headings

b. The h4 can't be a child of the ul -- only li's. If you want to use headings (h4 or otherwise), they need to be in an LI:

<ul>

<li><h4>Cephalopods</h4></li>

<li><a href="#">Octopus</a></li>

etc

Thanks so much for sharing - love your colors and layout!

Expand full comment
Sep 20, 2021Liked by Jen Kramer

Thank you for the advice. It didn't seem right to use the h4 there. Thank you for the extra reading material, I appreciate it.

I changed it up and used a class of title for the headings.

Expand full comment
Sep 18, 2021Liked by Jen Kramer

Having fun with emojis: https://codepen.io/kldickenson/pen/oNwqXLZ

Expand full comment
author

πŸ¦‘ πŸ™ πŸ¦‘ Double extra bonus points for the mollusk emojis!!! Nicely done - thanks for sharing!

Expand full comment
Sep 17, 2021Liked by Jen Kramer
author

πŸ¦‘ πŸ™ πŸ¦‘ Wow!!! Super pretty, William! Code looks great and the design is even better. Great job!

Expand full comment
Sep 17, 2021Liked by Jen Kramer

https://codepen.io/maeyler/pen/ZEyrypJ

I know this is not quite vertical navbar... I just combined Day#4 of CSS and Day#6 of HTML (<details> tag)

Expand full comment
author

Very nice - love the background image! Details/summary or a definition list (dl/dt/dd) could be used here as well. Looks great and functions well -- nice work!

Expand full comment
Sep 17, 2021Liked by Jen Kramer

This attempt is a vertical navbar, conforming to the specs:

https://codepen.io/maeyler/pen/QWgQxOe

I couldn't do it with hover, used some JavaScript instead

Expand full comment
author

πŸ¦‘πŸ¦‘πŸ™ Very nice! We will get to dropdowns with CSS in the 3rd week πŸ˜„

Expand full comment
deletedSep 17, 2021Liked by Jen Kramer
Comment deleted
Expand full comment
author

Nice! That's one approach - here you don't have a top level link on the first LI (cephalopods, etc). Markup looks great! Thanks for sharing 😁

Expand full comment