How to create First HTML Program?
10/29/10
The following are the steps for creating simple html program in Windows operating system.
Step 1: Open notepad
Step 2: Save the file with file extention ".html" or ".htm" for example "aboutme.html" or "aboutme.htm" in your working folder.( e:/html_programs/aboutme.html)
Step 3: Write the following code in the above created notepad file.
<html>
<head>
<title>First HTML Program for displaying MY Details</title>
</head>
<body>
Name: E. Jaya Kumar Reddy<br>
Qualification : M.Tech<br>
Favourite Subjects: JAVA, DBMS
</body>
</html>
Step 4: Save the above code
Step 5: Goto the location where u have saved your aboutme.html program and then double click on the file then the following out put will be displayed.