Autoprefixer CSS online

Wzór html

Podstawowy szablon html

<!DOCTYPE html>
<html lang="pl">
<head>
    <title>Nauka</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="keywords" content="html, css">
    <meta name="description" content="treść opisu">
    <meta name="author" content="Jan Kowalski">
    <link rel="stylesheet" href="style.css">
    <style>
        article,
        aside,
        footer,
        header,
        nav,
        section {
            display: block;
        }
    </style>
</head>
<body>
    <header>
        <h1>WZOROWY SZABLON</h1>
    </header>
    <article>
        <header>
            <h2>Tytuł artykułu</h2>
        </header>
        <section id="article-content">
            <h3>Tytuł sekcji</h3>
            <p>Tutaj właściwa treść artykułu...</p>
        </section>
        <footer>
            <p>Stopka artykułu</p>
        </footer>
    </article>
    <footer>
        <p>Stopka strony</p>
    </footer>
</body>
</html>