HTML Language Structure
<!DOCTYPE
html>
<html>
<head>
<head>
<title>Page Title Write hare</title>
</head
<body>
Hare All webpage layout design
</body>
</html>
Hare All webpage layout design
</body>
</html>
Above Code explain:
- <!DOCTYPE html> : Declare that is html document Browser easily understand all writing code very easily.
- <HTML> stating tag </Html> Ending Tag .
- <head> Head section hare define title and meta tag and description etc.</head> head ending.
- <title> under heading tag define webpage tile at this tag</title>
- <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:
- One
- Two
- Three
- Four
Tags:
Tutorial