Home Html
Get Started with Html

HTML stands for Hyper Text Markup Language. Html helps you to create web pages. It is Hyper Text because you can easily workout with the links and Mark up because html tags are marked which tells the browser how to display your web page. Html page contents text, images etc.
While starting for html use following code:

<html>
<head>
<title>This is Html page</title>
<body>
<h1>Starting with Html</h1><br>
Html stands for Hyper Text Markup Language
</body>
</head>
</html>

Result will be

Starting with Html


Html stands for Hyper Text Markup Language