I tried to replicate the template page as best I could!
1 Like
Hi @scottmc87,
This is only a recommendation
https://css-tricks.com/a-line-in-the-sand/
CSSlint:
- empty rule
body {
}
HTML:
- Do not use lower levels to decrease heading font size:
<h1 class="text-center">Stewart Cheifet</h1>
<h3 class="text-center"><i>The pioneer of tech journalism.</i></h3>
MDN documentation:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements
**Do not use lower levels to decrease heading font size: use the CSS font-size property instead.**Avoid skipping heading levels: always start from
<h1>
, next use<h2>
and so on.
Cheers and happy coding