Html Paragraphs and Headings
Paragraphs
The bulk of a web page consists of paragraphs, structured with the use of headings. The two kinds of elements are described in the following. The p element is used to split text into paragraphs.
<!DOCTYPE HTML>
<head>
<title>fatalweb tutorials</title>
</head>
<body>
<p>An introductory paragraph.</p>
<p>Another introductory paragraph.</p>
</body>
</html>
Headings
There are six levels of headings. The most important heading(s) in a document should be level one. Sub-headings should be level two. Sub-sub-headings should be level three, etc. Do not skip levels. If the default sizes do not suit your document, use CSS to change them. Headings should be used to effectively outline your content. By doing so, users can find information more quickly (i.e. wikipedia), and some search engines use headings to help rank page content.
This is Level 1
<h1>This is Level 1</h1>
This is Level 3
<h3>This is Level 3</h3>
This is Level 5
<h5>This is Level 5</h5> 

