HTML Series-Chapter-1- Basics of HTML

Chapter-1- Basics of HTML

  1. My First Program 

<!doctype html>
<html>
    <head>
        <title>My First Web Page</title>
    </head>

    <body>
        Hello world
        <ul>
        Guru Welcome's you
        <h2>This is all my Home Page</h2>
        <p>And all of my homepage content</p>
    <body>

</html> 

  1. My First Program


Comments