Update index.md (#24264)

This commit is contained in:
kushan2018
2018-11-05 04:42:53 +05:30
committed by Randell Dawson
parent a55966c3dc
commit d1a993fe09

View File

@ -15,6 +15,29 @@ title: Basic HTML
</html> </html>
``` ```
Html Headings
HTML headings are with the <h1> to <h6> tags.
<h1> Heading 1 </h1>
<h2> Heading 2 </h2>
<h3> Heading 3 </h3>
<h4> Heading 4 </h4>
<h5> Heading 5 </h5>
<h6> Heading 6 </h6>
** out put **
//when you type this and get the out put you can see the different
--------------------
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
## Explanation: ## Explanation:
The `<!DOCTYPE html>` is to tell the browser you want the page to be rendered using HTML5. The `<!DOCTYPE html>` is to tell the browser you want the page to be rendered using HTML5.