Blog IT

HTML is the standard markup language for Web pages.

Easy Learning with HTML "Try it Yourself".  With our "Try it Yourself" editor, you can edit the HTML code and view the result:

<!DOCTYPE html>
<html>
<head>
<title>This is Page Title</title>
</head>
<body>

<h1>This is a h1 text</h1>
<p>This is a paragraph text.</p>

</body>
</html>