WD 7. List&Tables

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tables and Lists</title>
</head>

<body>
    <ul type="disc">
        <li>This is first item of my unordered list</li>
        <li>This is second item of my unordered list</li>
        <li>This is third item of my unordered list</li>
    </ul>
    <ul type="square">
        <li>This is first item of my unordered list</li>
        <li>This is second item of my unordered list</li>
        <li>This is third item of my unordered list</li>
    </ul>
    <ul type="circle">
        <li>This is first item of my unordered list</li>
        <li>This is second item of my unordered list</li>
       
            <ul>
                <li>Another one</li>
                <li>Another two</li>
                <li>Another tnree</li>
            </ul>
       
        <li>This is third item of my unordered list</li>
    </ul>
    <ol type="1">
        <li>This is first item of my ordered list</li>
        <li>This is second item of my ordered list</li>
        <li>This is third item of my ordered list</li>
    </ol>
    <ol type="I">
        <li>This is first item of my ordered list</li>
        <li>This is second item of my ordered list</li>
        <li>This is third item of my ordered list</li>
    </ol>
    <ol type="i">
        <li>This is first item of my ordered list</li>
        <li>This is second item of my ordered list</li>
        <li>This is third item of my ordered list</li>
    </ol>
    <ol type="A">
        <li>This is first item of my ordered list</li>
        <li>This is second item of my ordered list</li>
        <li>This is third item of my ordered list</li>
    </ol>
    <ol type="a">
        <li>This is first item of my ordered list</li>
        <li>This is second item of my ordered list</li>
        <li>This is third item of my ordered list</li>
    </ol>

<!-- Tables -->
<h3>HTML Table</h3>
<table>
    <thead>
        <tr>
            <th>NAME</th>
            <th>EMPLOYEE ID</th>
            <th>EMPLOYEE ROLE</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Harry</td>
            <td>22N81A6652</td>
            <td>HTml Expert</td>
        </tr>
        <tr>
            <td>Ubedullah</td>
            <td>22N81A6639</td>
            <td>Programmer</td>
        </tr>
        <tr>
            <td>Adil</td>
            <td>22N81A6661</td>
            <td>Android Developer</td>
        </tr>
    </tbody>
</table>
</body>
</html> 

#Output:


Comments

Popular posts from this blog

JAVA Lab Programs

HANGMAN GAME

WD 22. StylingLinks&Buttons