Blog Post

Below code demonstrated this video: HTML img tag, form tag, input tags, semantic tag

----
<!DOCTYPE html>
<html>

<head>
    <title>This is a webpage</title>
    <meta charset="utf-8">
</head>

<body>
    <header>
        <h1>This is the heading</h1>
    </header>
    <main>
        <article>
        <section>
        <p>This is a paragraph</p>
        <div> This is div tag</div>
        <span> This is div tag</span>
        </section>

        <section>
        <ul> Unordered
            <li>First element</li>
            <li>Second element</li>
            <li>Third element</li>
        </ul>
        </section>
        </article>
    <a href="https://learn21.in">Link to learn21</a>
    <img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmpng.subpng.com%2F20180802%2Ftpl%2Fkisspng-logo-html5-brand-clip-art-%25E6%259D%2589-%25E5%25B1%25B1-%25E8%2589%25AF-%25E9%259B%2584-5b62be01b565d5.334247781533197825743.jpg&f=1&nofb=1" width="10%" 
    alt="html logo">

    <form action="/formsubmit">
        <label for="name">Name</label>
        <input id="name" type="text" required>

        <label for="email">Email</label>
        <input id="email" type="email">

        <label for="state">State</label>
        <select>
            <option value="delhi">Delhi</option>
            <option value="mp">MP</option>
            <option value="maharashtra">Maharashtra</option>
        </select>
        <button type="submit">Submit</button>
    </form>
    </main>

</body>

</html>