Lets Start


If you are using Windows xp or Windows seven operating system then simply go to all programs and select accessories and then notepad. Like:
Start=>All programs=>Accessories=> Notepad
If you are using Windows 8 then move your cursor to the corner of the right side and click on search, then type notepad and then select it.

Then type the following codes
<HTML>
<HEAD>
1st Program
</HEAD>
<BODY>
We are Learning HTML
</BODY>
</HTML>
 

Now Click on fine and then save as
File Name  program1.html         (Just write this way)  and then click save

Now go to the location where u keep it and then double click it.  You will see this type of page

Describing the coding:

Look the codes starts with <HTML> and end with </HTML>. Inside the HTML Tag there is to other tags called HEAD and BODY.. Normally we use head tag for some sort of Headlines, and inside the BODY tag we put our desire output.

Related Posts:

  • PARAGRAPH ELEMENT In a document we need free space after couple of lines. For this reason we can use this tag.  From the beginning we know that if we write  in 2 or 3 line space in editor it will be not same in browser. We used B… Read More
  • FONT SIZE With this tag we can increase or decrease the font size. The default size is 12. We can increase this till +7 or decrease till -7. We use (+) sign for increasing and (-) sign for decreasing. The tag format is <FONT SIZE=… Read More
  • FONT COLOR ELEMENT This tag is like FONT FACE and FONT SIZE element. Color can be declared by name like RED or GREEN or BLACK or you may use declare by decimal number which is decided for all the colors. This tag format is <FONT COLOR=(name… Read More
  • Use of   COMMAND Using this command you can give as much space as you want between text . &nbsp means amrersand next before spave. Example: <HTML> <HEAD> <TITLE> Example of space between text</TITLE> </HEAD&g… Read More
  • FONT FACE ELEMENT Sometimes we change fonts in MS Words, here we can do the same thing. Its like FONT SIZE tag. The format is like  <FONT FACE=(name of the font)>.........</FONT> Example: <HTML> <HEAD> <TITLE… Read More

0 comments:

Post a Comment