Sunday, December 28, 2014

Steps for creating Webpage using HTML?

1.     First make one folder inside the desired location.
2.     Write the source file with all required items (text, Images, table..) by using HTML codes using anyone           Text Editor like notepad.
3.     Save the source file suing .html or .htm extension inside the pre-made folder. Don't forget to choose All         files from the drop down menu of save as type.
4.     Save all images, sound clips and other items used in the web page inside the same location.
5.     Open any one available Browser (like Internet Explorer, Netscape Navigator etc.)
6.     Set path at address bar, otherwise direct choose the source file by using file Open option.

Note 1: If you change or modify a source file, don't forget to save and then refresh the browser to get the final output.
Note 2: Tags are not case sensitive. You can use both upper and lower case for tags. But, attribute valuse may be case sensitive. for ex: "Cloud.gir" is not same as "Cloud.gif"

Structure of HTML Program:
<HTML>
<HEAD><TITLE>.....</TITLE></HEAD>
<BODY>
.......................
.......................
</BODY>
</HTML>
All the contents of HTML documents must contained between <HTML> and</HTML> tags <HTML section>