HTML Basic Concepts

 HTML Language Structure

 <!DOCTYPE html>
<html>
  <head>
     <title>Page Title Write hare</title>
  </head  
<body>

   Hare All webpage layout design

</body>
</html
>

Above Code explain:

  1. <!DOCTYPE html> : Declare that is html document Browser easily understand all writing code very easily. 
  2. <HTML> stating tag </Html> Ending Tag .
  3. <head> Head section hare define title and meta tag and description etc.</head> head ending. 
  4. <title> under heading tag define webpage tile at this tag</title>
  5. <body> this is body section commonly all webpage code write hare</body


Some important html tag and there function:-

<h1></h1>
<h2><h2>
<h3></h3>
<h4><h4>
<h5></h5>

All this are heading tag commonly use when need heading any particular content.

<p></p> This is paragraph tag, when we are write any paragraph then define this tag.

Html Link tag:

<a href="http://www.google.com">Visit Google </a>


List tag:

<li>
<ol>one</ol>
<ol>Two</ol>
<ol>Three</ol>
<ol>Four</ol>
</li>

Out put Results:

  1. One
  2. Two
  3. Three
  4. Four


 



Post a Comment

Previous Post Next Post