What is HTML Tags and there Important.
HTML tag are a keyword which previously know web-browser run a webpage.
Html code starting tag <tag name> ending tag</tag name>
Each opening tag have closing tag ,closing tag declare </tag>
What is Web Browsers
Web-browser a software application which help to execute any webpage without browser we can't execute webpage.
Various web browser:-
Chrome,IE,Firefox,Safari etc.
HTML Page Layout
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<h1>a heading tag</h1>
<strong>A tag</strong>
</body>
</html>
Web document deceleration: <!DOCTYPE html>
Browser easily understand that is html document and easily display web content.
Note:HTML is not case sensitive language so if you write code like...
<h1>=<H1>.....That is same.
Tags:
Tutorial