Navigation Buttons


FACEBOOK    |    GMAIL    |    YAHOO

Thursday 2 April 2015

What is HTML?


HTML means Hyper Text Mark-up Language

HTML is a language that instructs the browser how to display the contents of a Web page in the browser window.

The HTML tag specifies the browser that the code enclosed between <HTML> and </HTML> is a HTML code. The HTML code is mainly divided into to sections, namely HEAD section, and BODY section

<html>
   <head>
      <title> Code Arch </title>
   </head>

   <body>
      ------------------------------
      ------------------------------
      -------- contents --------
      ------------------------------
      ------------------------------
   </body>
</html>

Heading

Heading only have 6 different sizes
- <h1> HEADING 1 </h1>

HEADING 1


- <h2> HEADING 2 </h2>

HEADING 2

- <h3> HEADING 3 </h3>

HEADING 3


- <h4> HEADING 4 </h4>

HEADING 4


- <h5> HEADING 5 </h5>
HEADING 5
- <h6> HEADING 6 </h6>
HEADING 6

Site Name

This tag will show your site name on browser tab
<title> Code Arch </title>

Wednesday 18 March 2015