w3schools.comThe World's Largest Web Developer Site
TUTORIAL REFERENCES EXAMPLES EXERCISES COURSES

HTML


The language for building web pages.
HTML Example:


<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>
		  
<h1>This is a heading</h1>
<p>This is a paragraph</p>
		  
</body>
</html>