No description
Find a file
Yann Esposito (Yogsototh) 8674d79cad Small remark
2012-01-24 22:47:35 +01:00
.gitignore Initial commit 2012-01-24 22:28:08 +01:00
index.html Posted a README and better example 2012-01-24 22:45:03 +01:00
README.md Small remark 2012-01-24 22:47:35 +01:00
y.css Initial commit 2012-01-24 22:28:08 +01:00
y.sass Initial commit 2012-01-24 22:28:08 +01:00

y.css

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>