محتوى الدورة
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>
    <code>
      var x = 10;
      var y = 20;
      console.log(x + y);
    </code>
    <p>
      This Is
      P
      New Line
      New Line
    </p>
    <pre>
      This Is
      P
      New Line
      New Line
    </pre>
    <pre>
      <code>
        var x = 10;
        var y = 20;
        console.log(x + y);
      </code>
    </pre>
    <iframe src="https://elzero.org/" width="800" height="400"></iframe>
  </body>
</html>