95% of content on the web is text
Scale
Style
Uh listen, do you know where Riverside Drive is? Yeah, sure, okay.
What's going on? Where have you been all week? I'm sure that in 1985, plutonium is available at every corner drug store, but in 1955, it's a little hard to come by. Marty, I'm sorry, but I'm afraid you're stuck here. Because, you might regret it later in life.
Don't worry. As long as you hit that wire with the connecting hook at precisely 88 miles per hour, the instance the lightning strikes the tower, everything will be fine. Doc
Headings are used to denote different sections of content, usually consisting of related paragraphs and other HTML elements. They range from h1 to h6 and should be styled in a clear hierarchy (i.e., largest to smallest). Il you are looking for a good seo you must respect this :
h1
per pageParagraphs are groups of sentences, each with a lead (first sentence) and transition (last sentence). They are block level elements, meaning they stack vertically when repeated. Use them as such.
You can customise this variables available on type.scss
$font-family-sans-serif: sans-serif;
$font-family-serif: serif;
$body-font-family: $font-family-sans-serif;
$header-font-family: $font-family-serif;
$h1-font-size: rem-calc(44);
$h2-font-size: rem-calc(37);
$h3-font-size: rem-calc(27);
$h4-font-size: rem-calc(23);
$h5-font-size: rem-calc(18);
How can we split content and architecure for SEO ? Here is a solution, adopt a good typography naming.
I am the emperor
I am Darth Vador
I am Darth Maul
I am a sith
I am an acolyte
And i am a simple paragraph
@extend directive is a dark side power of the force, use it carefully
.emperor {
@extend h1;
text-transform: uppercase;
}
.vador {
@extend h2;
font-weight: $font-weight-bold;
}
.maul {
@extend h3;
font-style: italic;
}
.sith {
@extend h4;
}
.acolyte {
@extend h5;
}