How to type Html in Notepad and get a suitable output.

 <html>

<head>

        <title>My first web page</title>

</head>

<body>

        This is my first web page

        How exciting


        <p>

        HTML is a markup language for describing web documents(web pages).

        HTML stands fot Hyper Text Markup Language.

        A markup language is a set of markup tags

        Each HTML tag describes different documents content

        </p>


        <p>

        This is my first web page.How exciting.

        This tag is probably the handiest and most

        Commonly used of all tags.

        </p>


</body>

</html>

Type The above Code to get following output.



Comments