fyi: @import vs http://stackoverflow.com/questions/7199364/import-vs-link https://stackoverflow.com/questions/7199364/import-vs-link I'd keep the same master stylesheet if it were me.
fyi: @import vs http://stackoverflow.com/questions/7199364/import-vs-link I'd keep the same master stylesheet if it were me.
fyi: @import vs https://stackoverflow.com/questions/7199364/import-vs-link I'd keep the same master stylesheet if it were me.
EDIT:
<h1>
or <img>
as a logo? Debate on... short answer, It depends on the context of the website—is it a single page layout? a personal blog? the next Amazon? Here's a few articles on the subject that will shed some light: http://csswizardry.com/2010/10/your-logo-is-an-image-not-a-h1/ & http://webmasters.stackexchange.com/questions/4515/h1-vs-h2-vs-other-for-website-title-logo-and-seo https://webmasters.stackexchange.com/questions/4515/h1-vs-h2-vs-other-for-website-title-logo-and-seo & http://www.amberweinberg.com/the-logo-to-h1-or-not-to-h1/ make your own asumptions. I've gone both ways on different projects.
EDIT:
<h1>
or <img>
as a logo? Debate on... short answer, It depends on the context of the website—is it a single page layout? a personal blog? the next Amazon? Here's a few articles on the subject that will shed some light: http://csswizardry.com/2010/10/your-logo-is-an-image-not-a-h1/ & http://webmasters.stackexchange.com/questions/4515/h1-vs-h2-vs-other-for-website-title-logo-and-seo & http://www.amberweinberg.com/the-logo-to-h1-or-not-to-h1/ make your own asumptions. I've gone both ways on different projects.
EDIT:
<h1>
or <img>
as a logo? Debate on... short answer, It depends on the context of the website—is it a single page layout? a personal blog? the next Amazon? Here's a few articles on the subject that will shed some light: http://csswizardry.com/2010/10/your-logo-is-an-image-not-a-h1/ & https://webmasters.stackexchange.com/questions/4515/h1-vs-h2-vs-other-for-website-title-logo-and-seo & http://www.amberweinberg.com/the-logo-to-h1-or-not-to-h1/ make your own asumptions. I've gone both ways on different projects.
Also, bear in mind, <section>
's, <article>
's, <main>
's, <footer>
's, and 's<header>
's will always label a heading as null if you don't have one (e.g. untitled) in the semantic outline. I'd drop your code into this: http://gsnedders.html5.org/outliner/ and see if some of those tags shouldn't be replaced with <div>
's which hold no semantic value.
P.S. If you're not going to use modernizr or jquery, make sure you don't include the libraries as they're unnecessary at that point. Additionally, you wouldn't need the conditional comments wrapping the <html>
tag either, nor the class="no-js"
class.
Also, bear in mind, <section>
's, <article>
's, <main>
's, <footer>
's, and 's will always label a heading as null if you don't have one (e.g. untitled) in the semantic outline. I'd drop your code into this: http://gsnedders.html5.org/outliner/ and see if some of those tags shouldn't be replaced with <div>
's which hold no semantic value.
P.S. If you're not going to use modernizr or jquery, make sure you don't include the libraries as they're unnecessary at that point.
Also, bear in mind, <section>
's, <article>
's, <main>
's, <footer>
's, and <header>
's will always label a heading as null if you don't have one (e.g. untitled) in the semantic outline. I'd drop your code into this: http://gsnedders.html5.org/outliner/ and see if some of those tags shouldn't be replaced with <div>
's which hold no semantic value.
P.S. If you're not going to use modernizr or jquery, make sure you don't include the libraries as they're unnecessary at that point. Additionally, you wouldn't need the conditional comments wrapping the <html>
tag either, nor the class="no-js"
class.