Sunday, 1 May 2016

How to create html page

HTML is the most widely used language on web to develop web pages

Steps to create html page :

Step1:
Open the notepad

Step2:
Type the following example code in notepad

<html>
<head>
<title> sample webpage</title>
</head>
<body>
<p>this is simple web page</p>
</body>
</html>

Step3:
Save the file using the one of the format .htm or .html

Step4:Open the file to see the webpage

No comments:

Post a Comment