<HTML5 common tags
by AlexMM
HTML
<!-- Normal text -->
Normal text
<!-- Bold text -->
<b>Bold text</b>
<!-- Italic text -->
<i>Italic text</i>
<!-- Line break -->
<br>
<!-- Headings -->
<h1>Title (level 1)</h1>
<h3>Subtitle (level 3)</h3>
<h6>Subtitle (level 6)</h6>
<!-- Paragrap -->
<p>Paragraph of text.</p>
<!-- Ordered list -->
<ol>
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ol>
<!-- Unordered list -->
<ul>
<li>item A</li>
<li>item B</li>
<li>item C</li>
</ul>
<!-- Generic division container (display:block) -->
<div>Division container</div>
<!-- Generic inline container (display:inline) -->
<span>Inline container</span>
<!-- Anchor -->
<a href="https://www.google.es">Link to Google</a>
<!-- Image -->
<img src="http://lorempixel.com/250/250/food/" alt="food image">
<!-- Button -->
<button>My button</button>