Html Home

HTML Tutorial

HTML Forms

HTML Graphics

HTML Media

HTML API

Html Home

HTML stands for standard markup language for Web pages that helps in creating websites.

Below is example of HTML code and view the result:

				
					<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

				
			

Output:

My First Heading

My first paragraph.