-
Important for errors! When we use `id` attributes in HTML we need to make sure those `id` attributes are unique to the entire document per best practices (see here: https://developer.mozilla.org/en-US…
-
For special symbols such as the ampersand, you should use its [entity reference](https://developer.mozilla.org/en-US/docs/Glossary/Entity).
In this case, you'd replace the `&` with `&`
http…
-
https://github.com/zollipaul/Colmar-Academy/blob/master/index.html#L3-L8
Don't forget to include the viewport meta tag so that you can properly control the viewport's size and scale.
This is a _…
ghost updated
6 years ago
-
https://github.com/zollipaul/Colmar-Academy/blob/master/index.html#L12-L33
Nice job making your markup more semantic by using tags like `header`, `nav` and `footer`. 👍
This is much better than …
ghost updated
6 years ago
-
Project name: Colmar Academy
Grade: Exceeds Expectations
Summary:
Your code here is well organized and functional within the spec, overall a well-done job. Your implementation of mobile resizing …
-
Project name: Colmar Academy
Grade: Exceeds Expectations
Summary:
Your code here is well organized and functional within the spec, overall a well-done job. Your implementation of mobile resizing …
-
Change: `Tues 10/11 & Wed 10/12: 8am-3pm`
To: `Tues 10/11 & Wed 10/12: 8am-3pm`
When using symbols, it's best to use their entity reference for better compatibility. For example for the copy…
-
Great! Good job using locally stored media for your project. This is best practice and allows your page to load faster. Be sure to use descriptive `alt` attributes on all your `` elements, like this…
-
Seen here: https://github.com/joanneberina/capstone_colmar/blob/e791f66039414c401f78e565ee6e82a537e7c0f1/resources/css/styles.css#L332-L335
I understand you want to keep them for the hover effect, …
-
Important for errors! Heading (`` - ``) and `` elements are not allowed to be nested inside of `` elements. `` elements can only have phrasing content nested inside. See here for more info about wha…