Introduction

This article introduces the HyperText Markup Language (HTML) language and how to start coding in HTML. In my next article of this series, I will show you all the major tags of the HTML language in just one article so until then go through this and be ready for the next part.

What is HTML?

HTML is a language for web pages.
The flow of the Data
For example, we can mark up some text as being a section header without any specification of what the header looks like.
Format information is provided separately.
For example, we can provide a format specification for a section header, specifying that it should appear as a 14 pt. font in boldface, left-justified.

Basic Idea

The basic idea is that a presentation program (Netscape is an example of such a program) takes the HTML and a format specification and creates the actual document.
Diagram
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1> Good morning Ehtesham Mehmood </h1>
  5. <p> Good evening Ehetsham Mehmood</p>
  6. </body >
  7. </html >
Explanation step-by-step

In which editor can we code HTML?

There are many editors in which you can code HTML.
I will use Notepad here. Use the following procedure to create your first web page with Notepad.
Step 1
Start Notepad
To start Notepad click on the Start button then select "All Programs" >> "Accessories" >> "Notepad".
Step 2
Edit Your HTML with Notepad
Type your HTML code into Notepad.
Step 3
Save Your HTML
Select "Save as.." in Notepad's file menu. When you save an HTML file, you can use either the .htm or the .html file extension.
Step 4
Run the HTML in your browser
Start your web browser and open your HTML file from the "File" -> "Open" menu, or just browse to the folder and double-click your HTML file.

Conclusion

In my next part of this article, I will show all the major tags of the HTML language in just one article so until then go through this and be ready for the next part.