-
Notifications
You must be signed in to change notification settings - Fork 49
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
Maz Weir, Winslow Edwards, Sarah Watkins, Phalesa Patton #41
base: main
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 work team, I enjoyed looking through your site! Excellent work using class selectors. I've left some feedback and suggestions, please take a look when you can and reach out if there's anything I can clarify.
@@ -0,0 +1,50 @@ | |||
<html lang="en"> |
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 creating an additional page
<header> | ||
<h1> Real Pictures of the Blue Ridge Mountains</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="facts.html">Cold Hard Facts</a></li> | ||
<li><a href="recreation.html">Recreation</a></li> | ||
<li><a href="gallery.html">Gallery</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<!--Hiking Pics--> | ||
<section class="hiking-mod"> | ||
<h2>Hiking Trails</h2> |
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.
It's a little subjective, but in this layout I might consider the header and the section as part of the significant content of the page and place it inside a main
tag.
nav ul { | ||
margin: 0; | ||
padding: 20px; | ||
text-align: center; | ||
list-style-type: none; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 16px; | ||
} |
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.
Nice work using this descendant selector
<li> | ||
<a href="../pages/index.html">Home</a> | ||
</li> | ||
<li> |
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.
Some list elements have the anchor tag inline and some don't, to make things easy to read and reduce possible confusion, we should pick one and be consistent across the project.
<body> | ||
<main class="container"> | ||
<header class="header"> | ||
<h1>Blue Ridge Mountains</h1> | ||
</header> | ||
<nav class="nav"> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="facts.html">Cold Hard Facts</a></li> |
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.
Some indentation is 2-spaces and some is 4-spaces, to make things easy to read and reduce possible confusion, we should pick one and be consistent across the project.
} | ||
nav li { |
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 suggest keeping a single blank line between each CSS rule to make it easy to see at a glance where one rule set and an another begins.
No description provided.