HTML Text Formatting Tags

by polaszk

HTML

<h1>HTML Course</h1>
<h2><a href="https://www.youtube.com/c/katarzynapolaszk" target="_blank">https://www.youtube.com/c/katarzynapolaszk</a></h2>
<br>

<strong> strong - makes text bold (semantic)</strong>
<br><br>
<b> b tag - makes text bold</b>
<br><br>
<em> em - emphasis, displays text in italics (semantic)</em>
<br><br>
<i> i tag - displays text in italics </i>
<br><br>
<s> s tag </s> - draw a line at the center of the text, so as to make it appear no longer useful
<br><br>
<del> del </del> - draw a line at the center of the text (semantic)
<br><br>
<ins> ins </ins> - denotes text that has been inserted into the webpage (semantic)
<br><br>
<blockquote> blockquote - quotes often go into this tag. Is used in tandem with the 'cite' tag</blockquote>
<br><br>
<cite> cite </cite> - tag for citing author of a quote
<br><br>
<q> q tag - similar to the 'blockquote' tag, but for shorter quotes</q>
<br><br>
<abbr> abbr </abbr> - denotes abbreviations, along with the full forms
<br><br>
<address> address </address> - tag for specifying author’s contact details
<br><br>
<dfn> dfn tag </dfn> - tag dedicated for definitions
<br><br>
<code> code -  used to display code snippets within a paragraph</code>
<br><br>
subscript <sub> sub </sub> - smaller font just below the mid-point of normal font
<br><br>
superscripting <sup> sup </sup> smaller font just above the mid-point of normal font
<br><br>
<pre> pre   .    ! - some pre-formatted    text</pre> 
<br>
<mark> mark - highlight a particular portion of the text </mark> 
<br><br>
<small> small </small> - reduces text size
<br><br><br><br>