Example 1

<html>
<head>
<title>HTML-Example 1</title>
</head>
<body>
 
Hello!<p>
 
We are learning how to create web pages using simple HTML code.<br>
 
See how to use <b>bold</b> tags.<p>
 
See how to use <i>italic</i> tags.<p>
 
 
The heading tags are shown below.<p>
 
<h5>Heading with h5</h5>
<h4>Heading with h4</h4>
<h3>Heading with h3</h3>
<h2>Heading with h2</h2>
<h1>Heading with h1</h1>
<p>
 
</body>
</html>