guide
HTML cheatsheet for syntax and common tasks
While using HTML it can be very handy to have an easy way to remember how to use HTML tags properly and how to apply them. MDN provides you with extended HTML reference documentation as well as a deep instructional set of HTML guides. However, in many cases we just need some quick hints as we go. That’s the whole purpose of the cheat sheet, to give you some quick accurate ready to use code snippets for common usages.
[!NOTE] HTML tags must be used for their semantic value, not their appearance. It’s always possible to totally change the look and feel of a given tag using CSS so, when using HTML, take the time to focus on the meaning rather than the appearance.
Inline elements
An “element” is a single part of a webpage. Some elements are large and hold smaller elements like containers. Some elements are small and are “nested” inside larger ones. By default, “inline elements” appear next to one another in a webpage. They take up only as much width as they need in a page and fit together horizontally like words in a sentence or books shelved side-by-side in a row. All inline elements can be placed within the <body> element.
| Usage | Element | Example |
|---|---|---|
| A link | [``](/firefox/mdn/html/reference/elements/a/) |
<a href="https://example.org"> A link to example.org</a>. Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Used to group elements: for example, to <span style=“color:blue”>style them</span>. Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Mark a phrase in <i>italics</i>. Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Used to represent the <small>small print </small>of a document. Interactive exampleOpen the canonical MDN source to run this embedded demo.
<address>Main street 67</address> Interactive exampleOpen the canonical MDN source to run this embedded demo.
For more monsters, see <cite>The Monster Book of Monsters</cite>. Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
<div style=“width: 200px”> Llanfair<wbr />pwllgwyngyll<wbr />gogerychwyrndrobwllllantysiliogogogoch. </div> Interactive exampleOpen the canonical MDN source to run this embedded demo.
Used to format the date. For example: <time datetime=“2020-05-24”> published on 23-05-2020</time>. Interactive exampleOpen the canonical MDN source to run this embedded demo.
This text is in normal format, but <code>this text is in code format</code>. Interactive exampleOpen the canonical MDN source to run this embedded demo.
<audio controls> <source src=“/shared-assets/audio/t-rex-roar.mp3” type=“audio/mpeg” /> </audio> Interactive exampleOpen the canonical MDN source to run this embedded demo.
<video controls width=“250” src=“/shared-assets/videos/flower.webm” > <a href=“/shared-assets/videos/flower.webm”>Download WebM video</a> </video> Interactive exampleOpen the canonical MDN source to run this embedded demo.
|
Block elements
“Block elements,” on the other hand, take up the entire width of a webpage. They also take up a full line of a webpage; they do not fit together side-by-side. Instead, they stack like paragraphs in an essay or toy blocks in a tower.
[!NOTE] Because this cheat sheet is limited to a few elements representing specific structures or having special semantics, the
divelement is intentionally not included — because thedivelement doesn’t represent anything and doesn’t have any special semantics.
| Usage | Element | Example |
|---|---|---|
| A simple paragraph | [` `](/firefox/mdn/html/reference/elements/p/) |
<p>I'm a paragraph</p> <p>I'm another paragraph</p> Interactive exampleOpen the canonical MDN source to run this embedded demo.
They said: <blockquote>The blockquote element indicates an extended quotation.</blockquote> Interactive exampleOpen the canonical MDN source to run this embedded demo.
<details> <summary>HTML Cheat Sheet</summary> <p>Inline elements</p> <p>Block elements</p> </details> Interactive exampleOpen the canonical MDN source to run this embedded demo.
<li>I’m an item</li> <li>I’m another item</li> </ul> Interactive exampleOpen the canonical MDN source to run this embedded demo.
<li>I’m the first item</li> <li>I’m the second item</li> </ol> Interactive exampleOpen the canonical MDN source to run this embedded demo.
<dt>A Term</dt> <dd>Definition of a term</dd> <dt>Another Term</dt> <dd>Definition of another term</dd> </dl> Interactive exampleOpen the canonical MDN source to run this embedded demo.
Interactive exampleOpen the canonical MDN source to run this embedded demo.
<h1> This is Heading 1 </h1> <h2> This is Heading 2 </h2> <h3> This is Heading 3 </h3> <h4> This is Heading 4 </h4> <h5> This is Heading 5 </h5> <h6> This is Heading 6 </h6> Interactive exampleOpen the canonical MDN source to run this embedded demo.
|