What is HTML? How we can use it. A beginner guide.- mdsolution

1

       BEGINNER'S HTML 


HTML
Third party resources
What is HTML? How we can use it?

HTML:-it is not a programming language.it is the Hper text Markup language. it is mainly use to design websites.it is the standard mark-up language for craeting web-page and website.and we can also make web-application , with Cascading style sheets(CSS) And JavaScript.

HTML is the method where simple text /ordinary text can be converted in hypertext.it is set of special code included to control layout and appearnce of the text.

  HTML is the character based method for describing and expressing the content.

The content is pictures, text, sound, video, and other multimedia file.Html delivers the content to multiple platforms.HTML link documents to compose compound documents.

HTML is developed and maintained by world wide web consortium (w3c).

It is derived from more general markup language called Standard Generalised Mark-up Language (SGML), which is an international organization for standardization (ISO) Technology that defines markup language.

Basic structure of HTML is:-
<html>
   <head>
      <title>Paragraph Example</title>
   </head>
   <body>
      _ _ _ _ _ _  _ _ _ _ _ _
      _ _ _ _ _  _ _ _ _ _ _ _
   </body>
</html>

There are some basic tags of HTML:-

(1) HTML Tag
(2) HEAD Tag
(3) TITLE Tag
(4) BODY Tag
(5) CENTER Tag
(6) LINE BREAK Tag
(7) BOLD Tag
(8) ITALIC Tag
(9) UNDERLINE Tag
(10) FOOTER Tag ,etc
There is more tags in HTML than Ithat i have mentioned in above.All tags have their own functions and importance.

(1)HEADING TAG:- Any html documents start with heading tag.it is use to define the heading   of any HTML documents.we can use different size for our document  heading.it have six heading tags. and i.e, <h1>, <h2>, <h3>, <h4>, <h5>, and <h6> . We can use this all different heading tags as follows:-
<h1>some text /content here</h1>
<h2> some text /content here </h2>
<h3> some text /content here </h3>
<h4> some text /content here </h4>
<h5> some text  /content here </h5>
<h6> some text  /content here </h6>

(2) TITTLE Tag :- title tag is use to indicate the title of the HTML document. It is placed between <head> and </head> tag. HTML document title is visible via browser’s title bar.

BROWSER SUPPORT
(3) Center tag:- We can use center tag in HTML document for align or putting text in the center of the HTML document. The code is as follows:
<center> This text is in the center. </center>.

  BROWSER SUPPORT
     
(4) BR Tag:- In HTML document we use <br> tag to break the line and start with another line. It is the empty tag, which means we don't need to close this tag like we use to do in other tag. For example in <h1> tag we also have to close it from </h1> tag. But in <br /> we didn't need to close it. The code is as follows:-
<p>Hello man <br />
  We delivered your project ontime.<br />
  Thanks for using our service<br />
   Mahnaz</p>

BROWSER SUPPORT
           
(5)BOLD Tag:- In html bold tag is use to add extra style to text. We use it to make text bold.<b>  -- </b> For example:
 This web page gives explanation on <b>bold</b> tag.

BROWSER SUPPORT
             
(6) UNDERLINE Tag:- In html underline tag is use to make text underline.we can make text underline by the <U> </U> tag.

Hello world welcome to <U>MDARSALANSOLUTION</U>. blogspot.com

BROWSER SUPPORT
             
I hoped that you liked my post on html . Now we will discuss more about HTML In the next post.So till than stay tune. Byee

Download my book:-download

Post a Comment

1Comments
Post a Comment