Tuesday, 8 February 2022

TUT7 (Tables and Lists)

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,
initial-scale=1.0">
    <title>Tables and Lists</title>
</head>
<body>
  <ul type="square">
      <li>This is first item of my unordered Lists</li>
      <li>This is Second item of my unordered Lists</li>
      <li>This is Third item of my unordered Lists</li>
      <ul type="circle">
          <li>another list</li>
      </ul>
  </ul>
  <ol type="a">
    <li>This is first item of my ordered Lists</li>
    <li>This is Second item of my ordered Lists</li>
    <li>This is Third item of my ordered Lists</li>
</ol>

<!-- Table -->
<h3>HTML Table</h3>
<table>
    <thead>
        <tr>
            <th>Name</th>
            <th>Employee Id</th>
            <th>Employee Role</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Zoya</td>
            <td>34345</td>
            <td>Programmer</td>
        </tr>
        <tr>
            <td>Wajid</td>
            <td>34346</td>
            <td>Hairdresser</td>
        </tr>
        <tr>
            <td>Sameer</td>
            <td>34348</td>
            <td>Junior</td>
        </tr>

    </tbody>
</table>
</body>
</html>









No comments:

Post a Comment

TUT 44 (CSS GRID - 3)

  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < met...