محتوى الدورة
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>Book Store</h1>
    <p>This Is My <b>Book Store</b>, Welcome</p>
    <a href="https://google.com" target="_blank" title="Go To Google">Google</a>
    <a href="https://facebook.com" title="Go To Facebook">Facebook</a>
    <a href="test.html" title="Go To Test Page">Test</a>
    <a href="#osama" title="Go To Osama">Osama Paragraph</a>
    <a href="mailto:o@nn.sa">Contact Me</a>
  </body>
</html>