This project has two homes. It is ok to work in github, still, for a better decentralized web please consider contributing (issues, PR, etc...) throught:
This is a very clean CSS to start with.
You have some typography classes for small caps for example.
Typically:
- the right size of the content.
- header numbering inside article,
- nice link (no underline, but a sup cross)
A typical HTML to use would be:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" type="text/css" href="y.css" /> <title>Page title</title> </head> <body> <header> <h1>Title</h1> <h2>Subtitle</h2> </header> <article> <title> <h1>Article Title</h1> </title> <p>This is the article</p> <h2>section</h2> <h3>subsection</h3> <p>Some <em>content</em> <strong>with</strong> <a href="#">a link</a>. </p> <blockquote>A blockquote</blockquote> </article> <footer> <p>Footer content</p> </footer> </body> </html>