<html> <head> <title> The simplest HTML example </title> </head> <body> <h1> This is an HTML Page </h1> </body> </html>
Which Looks like this when viewed through a browser:
Figure:Simplest HTML page
<html> <head> <title> Another simple HTML example </title> </head> <body> <h1> This is a level-one heading </h1> Welcome to the world of HTML. <p> This is one paragraph. </p> <p> This is a second paragraph. </p> </body> </html>
Which Looks like this when viewed through a browser:
Figure:Another simple HTML example