Site icon DataFlair

HTML Introduction and Some Basic Tags

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

Program 1

<html>
    <head>
        <title>My Website</title>
    </head>
    <body>
        <h1>Welcome</h1>
        <h2>Welcome</h2>
        <h3>Welcome</h3>
        <h4>Welcome</h4>
        <h5>Welcome</h5>
        <h6>Welcome</h6>
        <p><b><u><i>This is my website</i></u></b></p>
        <p>H<sub>2</sub>O</p>
        <p>a<sup>3</sup></p>
 <p> This is my website . <br> I am Learning HTML </p>
 
</body>

</html>
Exit mobile version