source code of list in html

today, I am sharing you the source code of list demonstrated in the video.

 access the video


here we go 


<!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>lists in html</title>

</head>

<body>

    <ul type="square">

        <li>mango</li>

        <li>apple</li>

        <li>banana</li>

    </ul>


    <ol type="I">

        <li>html</li>

        <li>css</li>

        <li>javascript</li>

    </ol>


    <dl>

        <dt>google</dt>

        <dd>a famous company </dd>

        <dt>web development</dt>

        <dd>easy and accessible </dd>

    </dl>

</body>

</html>

Comments