محتوى الدورة
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>
    <!--
      src => Source
      alt => Alternate Text
     -->
    <h1>Book Store</h1>
    <p>This Is My <b>Book Store</b>, Welcome</p>
    <img
      src="https://elzero.org/wp-content/uploads/2018/06/cover-speed-website.png"
      alt=""
      width="200px"
      height="200px">
    <img src="imgs/home/cover-speed-website.png" alt="">
    <img src="../cover-speed-website.png" alt="Will Not Show">
    <img src="missing-image.png" alt="Logo Testing">
  </body>
</html>