infomatico.cl

Sistemas digitales de calidad

Plantilla HTML 5

<!doctype html>
<html lang="es-CL">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width,initial-scale=1.0">
        <title>Título</title>
        <link rel="stylesheet" href="style.css">
        <script src="index.js"></script>
    </head>
    <body>
        <nav>
        </nav>
        <header>
        </header>
        <main>
        </main>
        <footer>
        </footer>
    </body>
</html>
<nav>
    <a href="">Inicio</a>
    <a href="/articles">Artícles</a>
</nav>
<header>
    <img src="logo.svg" width="100" height="100" alt="logo"/>
</header>
<main>
    <section class="highlight">
        <article>
            <h1>Título 1</h1>
            <h2>Título 2</h2>
            <p>Párrafo</p>
        </article>
    </section>
    <section class="others">
        <article>
            <h1>Título 1</h1>
            <h2>Título 2</h2>
        </article>
    </section>
</main>
<footer>
    <a href="https://goo.gl/maps/a7zUPPoAWnvn4gkh9">Dirección, Comuna</a>
    <a href="tel:+56912345678">+56 9 1234 5678</a>
</footer>