Hello World

The (X)HTML uses tags to describe the area of the page, e.g. title tag means the title of the page. The below code displays “Hello World” in the page and the title of the page is “Hello World Tutorial”.

Cut the code from here

<html>
<title>Hello World Tutorial</title>
<body>
Hello World
</body>
</html>

if you save that as helloworld.html, and then open up the saved page with your browser of choice.

Leave a Reply

Your email address will not be published. Required fields are marked *