Showing posts with label create html page. Show all posts
Showing posts with label create html page. Show all posts

Tuesday, 19 February 2013

Basic HTML


Hypertext Markup Language or HTML, is the most commonly used language on Web.
It  is a  markup language, not a programming language.

It is used to write web pages. Browsers understand only markup language.

How to create a basic HTML Page using Notepad, Notepad++.

1, Go to your notepad.
2, Start Typing
<!doctype html>
<html>
<head>
<title>My Title</title>
</head>
<body>
</body>
</html>
3, Save page as .html file.
4, Run in browser.

This is a blank webpage with title only.