محتوى الدورة
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>
    <div>
      <h1>Book Store</h1>
      <p>This Is My Book Store, Welcome</p>
    </div>
    <video controls width="600" height="400" autoplay loop muted poster="imgs/home/cover-speed-website.png">
      <source src="media/ghosts.mp4" type="video/mp4">
      <source src="media/ghosts.ogg" type="video/ogg">
      Your Browser Does Not Support Video Tag
      <track src="my_file_en.vtt" kind="subtitles" srclang="en" label="English">
      <track src="my_file_it.vtt" kind="subtitles" srclang="it" label="Italian">
    </video>
  </body>
</html>