Saturday, 6 October 2012

How to start with HTML

Begin With HTML.

1)Steps:

 First Write a Code in notepad as shown below.
<html>
<head>
<title>First HTML</title>
</head>
<body>
      Hi
</body>
</html>

 Then save this file as .html extension.......
 open this file in web browser.....
 output as shown below...



Here we write code between <body> </body>

We can also use notepad++ as editor.
The best editor for html is Dreamweaver.

No comments:

Post a Comment