HTML Structure


HTML is written by using tags. Every tag starts with ‘<’  ‘>’  and end with same sign but with a /. For example we can see <HTML>, </HTML>.  It is mandatory to start and end every HTML file with <html> and </html>.  In between HTML tags there are HEAD and BODY section. So more or less it looks like :

<HTML><HEAD>
…………………………….
</HEAD>
<BODY>
……………………………
……………………………
</BODY>
</HTML>

Related Posts:

  • Learning Web page Development with HTML HTML means Hyper Text Markup Language. In general  we can write documents with MS word or word pad or note pad but they are not suitable for sending or publishing in web. So we need a mark up language. It is not like … Read More
  • BLOCKQUOTE ELEMENT This tag used to quote some text of the webpage. It is almost like CENTER element, text is shown in middle. The format is <BLOCKQUOTE>..............................<BLOCKQUOTE> Example: <HTML> <HEAD&g… Read More
  • HEADING ELEMENT By using this tag you can give different types of heading in your web page. From H1 to H6, there are 6 levels. By the number 1 you can easily imagine H1 is the biggest heading and H6 is the smallest. The format of this tag i… 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
  • CENTER ELEMENT You can use this tag to show the text in the center of your webpage. You can also do this by using ALIGN Attributes. i.e. <P ALIGN=CENTER>. Use this tage before and after the text you want to show in center.  Tag … Read More

0 comments:

Post a Comment