My First Project(off-platform) in Codecademy : Dashmoto's Art & Craft

Hi everyone, this is Cihat from Turkey.
I really eager to learn coding and i’m learning front-end developer. This is my first post and first code review.

https://github.com/chtncy/off-platform-first-project/tree/main

HTML :

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Dasmoto's Arts & Crafts</title>
    <link rel="stylesheet" href="./index.css" />
  </head>
  <body>
    <h1>Dasmoto's Arts & Crafts</h1>
    <section>
      <h2 id="brushes">Brushes</h2>
      <img src="./image2.jpeg" alt="" />
      <h3>Hacksaw Brushes</h3>
      <p>
        Made of the highest quality oak, Hacksaw brushes are known for their
        weight and ability to hold paint in large amounts. Available in
        different sizes.<span> Starting at $3.00 / brush</span>.
      </p>
    </section>
    <section>
      <h2 id="frames">Frames</h2>
      <img src="./image3.jpeg" alt="" />
      <h3>Art Frames (assorted)</h3>
      <p>
        Assorted frames made of different material, including MDF, birchwood,
        and PDE. Select frames can be sanded and painted according to your
        needs.
        <span>Starting at $2.00 / frame</span>.
      </p>
    </section>
    <section>
      <h2 id="paint">Paint</h2>
      <img src="./image4.jpeg" alt="" />
      <h3>Clean Finnish Paint</h3>
      <p>
        Imported paint from Finland. Over 256 colors available in-store, varying
        in quantity (1 oz. to 8 oz.). Clean Finnish paint microbinds to canvas,
        increasing the finish and longevity of any artwork.<span>
          Starting at $5.00 / tube.</span
        >
      </p>
    </section>
  </body>
</html>

CSS :

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Dasmoto's Arts & Crafts</title>
    <link rel="stylesheet" href="./index.css" />
  </head>
  <body>
    <h1>Dasmoto's Arts & Crafts</h1>
    <section>
      <h2 id="brushes">Brushes</h2>
      <img src="./image2.jpeg" alt="" />
      <h3>Hacksaw Brushes</h3>
      <p>
        Made of the highest quality oak, Hacksaw brushes are known for their
        weight and ability to hold paint in large amounts. Available in
        different sizes.<span> Starting at $3.00 / brush</span>.
      </p>
    </section>
    <section>
      <h2 id="frames">Frames</h2>
      <img src="./image3.jpeg" alt="" />
      <h3>Art Frames (assorted)</h3>
      <p>
        Assorted frames made of different material, including MDF, birchwood,
        and PDE. Select frames can be sanded and painted according to your
        needs.
        <span>Starting at $2.00 / frame</span>.
      </p>
    </section>
    <section>
      <h2 id="paint">Paint</h2>
      <img src="./image4.jpeg" alt="" />
      <h3>Clean Finnish Paint</h3>
      <p>
        Imported paint from Finland. Over 256 colors available in-store, varying
        in quantity (1 oz. to 8 oz.). Clean Finnish paint microbinds to canvas,
        increasing the finish and longevity of any artwork.<span>
          Starting at $5.00 / tube.</span
        >
      </p>
    </section>
  </body>
</html>

I’m waiting for your reviews and if you have any advice please let me know.