Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

HTML - Paragraph

Back


Paragraph Element

Tag Description Example
<h1> Headding tag that defines HTML headings.
<h1> defines the most important heading.
<h6> defines the least important heading
<h1>H1 text<h1>
<h6>H6 text</h6>
<p> Paragraph tag that defines HTML paragraphs. <p>A paragraph text.</p>
<br> Break tag inserts single line breaks in a text.
Break tag has no end tag.
 
<hr> Hr tag is most often displayed as a horizontal rule that is used to separate content.
Hr tag has no end tag.
<hr>

TOP