Sunday 7 March 2021

HTML TUT-3 Creating Lists and Tables In HTML

Creating Lists And Tables In html

Lists And Tables

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Lists and Tables</title>
</head>
<body>
    <ol type="1">
<li>This is frist orders</li>
<ul>
    <li>Another list </li>
    <ol>

        <li>Another one </li>
        <li>Another two </li>
        <li>Another three </li>
    </ol>
    <li>Another list2 </li>
    <li>Another list3 </li>
    <li>Another list4 </li>

    
</ul>
<li>This is second orders</li>
<li>This is thirds orders</li>
<li>This is fourth orders</li>


    </ol>
    <ul type="circle">
<li>This is frist Lists</li>
<li>This is seconds Lists</li>
<li>This is thirds Lists</li>
<li>This is fourth Lists</li>

    </ul>

    <table>
        <h2>Web development Company</h2>
<thead>
<tr>
<th>Employees name</th>
<th>Employees ID</th>
<th>Employees Role</th>

</tr>


</thead>
<tr>
<td>UpendraYadav</td>
<td>5265</td>
<td>programmer</td>


</tr>
<tr>
<td>Sachin </td>
<td>2565</td>
<td>apps development</td>

</tr>
<tr>
<td>rahul </td>
<td>5655</td>
<td>HTML Expert</td>



</tr>



    </table>


</body>
</html>

 

No comments:

Python if / else

 Python if / else a1 = int ( input (" Enter the number: \n ")) a2 = int ( input (" Enter the number: \n ")) a3 = int ( i...