محتوى الدورة
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>
    <!--
      thead
      tbody
      tfoot
      tr => Table Row
      td => Table Data Cell
      th => Table Header Cell
    -->
    <table border="1">
      <caption>
        Students Marks
      </caption>
      <tr>
        <th>First</th>
        <th>Last</th>
        <th>Marks</th>
      </tr>
      <tr>
        <td>Osama</td>
        <td>Mohamed</td>
        <td>40</td>
      </tr>
      <tr>
        <td>Osama</td>
        <td>Mohamed</td>
        <td>40</td>
      </tr>
      <tr>
        <td>Osama</td>
        <td>Mohamed</td>
        <td>40</td>
      </tr>
      <tr>
        <td>Osama</td>
        <td>Mohamed</td>
        <td>40</td>
      </tr>
      <tr>
        <td colspan="2">Total</td>
        <td>160</td>
      </tr>
    </table>
  </body>
</html>