0% found this document useful (0 votes)
34 views2 pages

File 4

The document contains examples of ordered and unordered lists, with nested lists, as well as an HTML table with headings and rows of employee data.

Uploaded by

Debabrata Saha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views2 pages

File 4

The document contains examples of ordered and unordered lists, with nested lists, as well as an HTML table with headings and rows of employee data.

Uploaded by

Debabrata Saha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

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="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 three</li>
        </ul>
        <li>This is third item of my unordered list</li>
        <li>This is fourth item of my unordered list</li>
    </ul>
    <ol type="I">
        <li>This is first item of my ordered list</li>
        <li>This is second item of my ordered list</li>
    <ol type="A">
        <li>Another one</li>
        <li>Another two</li>
        <li>Another three</li>
    </ol>
        <li>This is third item of my ordered list</li>
    <ul>
        <li>another one</li>
        <li>another two</li>
    </ul>
        <li>This is fourth item of my ordered list</li>
    </ol>

    <!-- tables -->
    <h3>HTML Table</h3>
    <table>
        <head>
            <tr>
                <th>Name</th>
                <th>employee id</th>
                <th>employee role</th>
            </tr>
        </head>
        <body>
            <tr>
                <td>harry</td>
                <td>34343</td>
                <td>programmer</td>
            </tr>
            <tr>
                <td>shuvo saha</td>
                <td>34344</td>
                <td>web developer</td>
            </tr>
            <tr>
                <td>shuvo</td>
                <td>34345</td>
                <td>bekar</td>
            </tr>
        </body>
    </table>
    

</body>

</html>

You might also like