Site icon DataFlair

Features of HTML5

Full Stack Web Development Courses with Real-time projects Start Now!!

Program 1

<html>
    <body>
        <div>
            <p>This is some text</p>
            <ul>
                <li>tea</li>
                <li>milk</li>
                <li>coffee</li>
            </ul>
            <p>i am learning HTML.<span>It is used to create web pages</span></p>
        </div>

        <audio controls>
            <source src="C:\Users\Lenovo\\Downloads\\sample_audio.mp3">
        </audio>

        <figure>
            <img src="C:\Users\Lenovo\Downloads\bird.jpg">
            <figcaption><center>Bird</center></figcaption>
        </figure>
        <progress value="22" max="100"></progress>
    </body>
</html>

 

Exit mobile version