HTML
Design you web page by yourself
Headings
You create headings in HTML by "tagging" text with heading tags. The format for HTML heading tag is:
<hn> Heading</hn>
where n is a number from 1 to 6 identifying the heading size. Heading sizes range from size 1 (Biggest) to size 6 (Smallest).
Example
1. Open Notepad program
2. Write the following code
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1> heading size 1</h1>
<h2> heading size 2</h2>
<h3> heading size 3</h3>
<h4> heading size 4</h4>
<h5> heading size 5</h4>
<h6> heading size 6</h6>
<p> This is my first web page its looks simple by I will learn to make more professional web pages as I read through this tutorial.</p>
</body>
</html>
3. From the file menu save the file as headings.html
4. Reopen it using the web browser