It’s normal to know what you are searching for, to know how to do something, but what was the naming again? That’s quite relatable, that’s why I am creating this cheat sheet. So that I am able to quickly find all things HTML.

Want the sister-in-law of this cheat sheet? (it’s the one about CSS)

HTML Element Cheat Sheet

ElementDescriptionPossible Attributes
<!DOCTYPE>Document Type Declaration
<html>Root element of an HTML pagelang
<head>Container for metadata
<title>Title of the HTML document
<meta>Metadata about the HTML documentcharset, name, content, http-equiv
<link>External resource linkhref, rel, type, media, sizes
<style>Internal CSS stylingtype, media, scoped
<script>JavaScript codeasync, defer, src, type, charset, language
<body>Container for the content of the pageonload, onunload, bgcolor, text, link, alink, vlink
<h1> to <h6>Heading levels
<p>Paragraph
<a>Anchor (hyperlink)href, target, download, rel
<img>Imagesrc, alt, width, height, usemap, ismap
<ul>Unordered listtype, compact
<ol>Ordered listtype, start, compact
<li>List itemvalue
<dl>Definition list
<dt>Definition term
<dd>Definition description
<blockquote>Block quotationcite
<q>Inline quotationcite
<abbr>Abbreviationtitle
<cite>Citation
<code>Code
<em>Emphasis
<strong>Strong emphasis
<span>Generic container
<div>Division/container
<br>Line break
<hr>Horizontal rulealign, color, noshade, size, width
<a>Anchor (hyperlink)href, target, download, rel
<img>Imagesrc, alt, width, height, usemap, ismap
<table>Tableborder, width, cellpadding, cellspacing, summary
<tr>Table rowalign, valign
<th>Table header cellabbr, axis, colspan, rowspan, scope, headers
<td>Table data cellabbr, axis, colspan, rowspan, headers, align, valign
<form>Formaction, method, target, enctype, accept-charset
<input>Inputtype, name, value, placeholder, disabled, readonly, checked, required
<textarea>Text areaname, rows, cols, wrap, placeholder, disabled, readonly, required
<select>Dropdown listname, size, multiple, disabled, readonly, required
<option>Optionvalue, selected, disabled, label
<button>Buttonname, value, type, disabled, form, formaction, formenctype, formmethod, formnovalidate, formtarget
<label>Label for form controlsfor, form
<fieldset>Fieldset groupingdisabled, form, name
<legend>Caption for a <fieldset>
<iframe>Inline framesrc, width, height, frameborder, allowfullscreen, sandbox
<audio>Audiosrc, controls, autoplay, loop, muted, preload, volume
<video>Videosrc, controls, autoplay, loop, muted, preload, width, height
<canvas>Drawing surface for graphicswidth, height
<svg>Scalable Vector Graphicswidth, height, viewBox
<nav>Navigation block
<header>Header block
<footer>Footer block
<section>Section block
<article>Article block
<aside>Aside content
<figure>Multimedia content with a caption
<figcaption>Caption for a <figure>
<details>Disclosure widgetopen
<summary>Summary for a <details>
<mark>Marked/highlighted text
<progress>Progress barvalue, max
<output>Result of a calculationfor, form, name
<time>Machine-readable date/timedatetime
<meter>Scalar measurement within a known rangevalue, min, max, low, high, optimum
<ruby>Ruby annotation
<rt>Ruby text
<rp>Parentheses for ruby text

Common HTML Attributes Cheat Sheet

AttributeDescriptionExample
idUnique identifier for an element<div id="myDiv"></div>
classSpecifies one or more class names for an element<p class="highlight">Text</p>
styleInline CSS styling for an element<span style="color: red;">Text</span>
titleProvides additional information about an element<a href="#" title="Click me">Link</a>
langSpecifies the language of the element<html lang="en">...</html>
dirSpecifies the text direction<div dir="rtl">Right to left text</div>
tabindexSpecifies the tab order of an element<input type="text" tabindex="1">
accesskeyDefines a keyboard shortcut for an element<button accesskey="s">Save</button>
contenteditableMakes an element editable<div contenteditable="true">Editable content</div>
hiddenHides an element<div hidden>Hidden content</div>
draggableSpecifies whether an element is draggable<img src="image.jpg" draggable="true">
roleDescribes the role of an element<div role="navigation">Navigation</div>
aria-*Accessible Rich Internet Applications (ARIA) attributes<button aria-label="Close" aria-disabled="true">X</button>
data-*Custom data attributes<div data-info="123">...</div>