How to create a simple webpage using HTML Language
WEBPAGE USING HTML LANGUAGE
Its very simple to create a webpage using HTML. Here i explained you to create how to do it.
Example:
<html>
<head>
</head>
<body>
<title>MAIN TITLE OF THE PAGE</title>
<h1>HEADING1</h1>
<p>This is a paragraph</p>
<p>This is second paragraph</p>
</body>
</html>
Save it as file name with extension as .html
eg: index.html
Comments
Post a Comment