محتوى الدورة
Learn HTML In Arabic 2021
وصف الدرس

ال Code الموجود في الدرس

<!doctype html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Book Store</title>
    <meta name="description" content="This Is Our Book Store" />
  </head>
  <body>
    <!-- h1 - h6 -->
    <h1>Book Store</h1>
    <h2>Chapter Title Inside Book</h2>
    <h3>Story Title Inside Chapter</h3>

    <h4>Book Store</h4>
    <h5>Book Store</h5>
    <h6>Book Store</h6>
    This Is My Book Store, Welcome
  </body>
</html>