Basic HTML layout

  • Post author:
  • Post category:HTML
  • Post comments:0 Comments
<!DOCTYPE html>
<html>
  <head>
    <title>Holidays</title>
   <meta charset="UTF-8">
  </head>
  <body>
    <section>
      <h2>Latest Deals</h2>
      <h3>See latest holiday deals here</h3>
      <article>
        <h4>Holiday 1</h4>
        <p>A lovely break in spain</p>
      </article>
    </section>
  </body>
</html>

Leave a Reply