<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />

    <title>Blog preview card</title>

    <link
      rel="icon"
      type="image/png"
      sizes="32x32"
      href="/images/favicon-32x32.png"
    />
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <main class="card">
      <div class="image-container">
        <img
          src="/images/illustration-article.svg"
          alt="Article illustration"
        />
      </div>

      <div class="content">
        <p class="learning">Learning</p>

        <p class="date">Published 21 Dec 2023</p>

        <h1 class="heading">HTML & CSS foundations</h1>

        <p class="description">
          These languages are the backbone of every website, defining structure,
          content, and presentation.
        </p>
      </div>

      <div class="author">
        <img
          width="32"
          height="32"
          src="/images/image-avatar.webp"
          alt="Greg Hooper"
        />
        <p>Greg Hooper</p>
      </div>
    </main>
  </body>
</html>