barbeiro da esquina

Exercício HTML para Front End Fundamentals - Growin 2016

by Cthulhu

HTML

<html>

  <body>
    <header>
      <h1><img src="http://www.beardsalon.com/wp-content/uploads/2016/03/8487_430719877119275_1211902129094173747_n.jpg" alt="O Barbeiro da Esquina"></h1>

    </header>

    <main>
      <section>
        <h1>Promoções</h1>
        <article>
          <h2>Promoção da Semana</h2>
          <p>
            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lacus sapien, egestas id sapien in, feugiat faucibus tellus.
          </p>
        </article>

        <h2>
  Promoção Tótil
  </h2>
      </section>

      <section>
        <h1>
  Fotos
  </h1>
        <img src="https://i.imgur.com/1KZAy.jpg">
      </section>

      <section>
        <h1>
    Preçário
    </h1>
      </section>
    </main>


    <footer>
      <a href="mailto:[email protected]">[email protected]</a>
      <a href="tel:987654321">tel: 987654321</a>
    </footer>

  </body>

</html>

CSS

img {
  width: 100px;
}