Html Heading Tags
Html stands for Hypertext Markup Language. It is a language that web browsers can understand. Here is the basic structure of a web page.
<!DOCTYPE html>
<html>
<body>
<h1>This is a Heading</h1>
<h2>This is a Heading</h2>
<h3>This is a Heading</h3>
<h4>This is a Heading</h4>
<h5>This is a Heading</h5>
<h6>This is a Heading</h6>
<p>This is a paragraph.</p>
The structure of web page starts with <!DOCTYPE html>. This tells the browsers that it is an html page. Then the html tag starts. There are 6 Heading Tags in Html Language
</body>
Html stands for Hypertext Markup Language. It is a language that web browsers can understand. Here is the basic structure of a web page.
<!DOCTYPE html>
<html>
<body>
<h1>This is a Heading</h1>
<h2>This is a Heading</h2>
<h3>This is a Heading</h3>
<h4>This is a Heading</h4>
<h5>This is a Heading</h5>
<h6>This is a Heading</h6>
<p>This is a paragraph.</p>
The structure of web page starts with <!DOCTYPE html>. This tells the browsers that it is an html page. Then the html tag starts. There are 6 Heading Tags in Html Language
</body>
</html>
No comments:
Post a Comment