This is a draft cheat sheet. It is a work in progress and is not finished yet.
HTML Text Tags
Tag |
Description |
Example |
<h?> |
Heading from <h1> to <h6> |
<h1>Idiomarum</h1> |
<p> |
New paragraph |
<p>Text</p> |
<b> |
Bold text |
<b>Text</b> |
<strong> |
Important bold text |
<strong>Text</strong> |
<i> |
Italic text |
<i>Text</i> |
<em> |
Emphasized italic text |
<em>Text</em> |
HTML Links & Images
Tag |
Description |
Example |
Attributes |
<a href="" target=""> |
Page link |
<a href="www.idiomarum.com">Idiomarum</a> |
href="Page to link"; target="_blank" for new tab |
<img src="" alt=""> |
Image |
<img src="foto.jpg" alt="Foto"> |
src="Name or link to image"; alt="Some text" |
HTML Lists
Tag |
Description |
Example |
<ul> |
Unordered list |
<ul><li>Milk</li></ul> |
<li> |
List Element |
<li>Milk</li> |
<ol> |
Ordered list |
<ol><li>Milk</li></ol> |
HTML Tables
Tag |
Description |
Example |
<table> |
Defines a table |
<table></table> |
<tr> |
Defines a row of the table |
<table><tr></tr></table> |
<td> |
Defines a column of the table |
<table><tr><td></td></tr></table> |
HTML Blocks
Tag |
Description |
Example |
<div> |
Creates a container to store other tags |
<div><p>Text</p></div> |
<span> |
Creates a container of text |
<p>Hello <span>World!</span> |
HTML Empty Tags
Tag |
Description |
<br> |
Line break |
<hr> |
Display a line |
|