create a simple webpage in HTML5

 Create a simple webpage in HTML language.


Input:

<!DOCTYPE html>

<html>

<head>

<title> simple webpage </title>

</head>

<body>

<h2> Hello HTML </h2>

<p> this is paragraph  tag </p>

</body>

</html>


Output :

simple webpage

Hello HTML

this is paragraph tag

Comments

Popular posts from this blog

How to create a heading in HTML ?