HTML Cheat Sheet & Quick Reference
HTML Cheat Sheet & Quick Reference
QuickRef.ME Stars 8k
HTML
This HTML quick reference cheat sheet lists the common HTML
and HTML5 tags in readable layout.
Test Your IQ
Take our IQ test and find out your true IQ score in just 3 mi
# Getting Started
hello.html
https://quickref.me/html 1/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=ed
<meta name="viewport" content="width=device-width
<title>HTML5 Boilerplate</title>
</head>
<body>
<h1>Hello world, hello QuickRef.ME!</h1>
</body>
</html>
Comment
<!--
Or you can comment out a
large number of lines.
-->
Paragraph
https://quickref.me/html 2/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
HTML link
<a href="https://quickref.me">QuickRef</a>
<a href="mailto:jack@abc.com">Email</a>
<a href="tel:+12345678">Call</a>
<a href="sms:+12345678&body=ha%20ha">Msg</a>
Image Tag
https://quickref.me/html 3/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
<b>Bold Text</b>
<strong>This text is important</strong>
<i>Italic Text</i>
<em>This text is emphasized</em>
<u>Underline Text</u>
<pre>Pre-formatted Text</pre>
<code>Source code</code>
<del>Deleted text</del>
<mark>Highlighted text (HTML5)</mark>
<ins>Inserted text</ins>
<sup>Makes text superscripted</sup>
<sub>Makes text subscripted</sub>
<small>Makes text smaller</small>
<kbd>Ctrl</kbd>
<blockquote>Text Block Quote</blockquote>
Headings
Section Divisions
https://quickref.me/html 4/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Inline Frame
↓ Preview
https://quickref.me/html 5/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Armstrong
Armstrong, 2880 Broadway, New
York, NY 10025, USA
JavaScript in HTML
<script type="text/javascript">
let text = "Hello QuickRef.ME";
alert(text);
</script>
External JavaScript
<body>
...
<script src="app.js"></script>
</body>
CSS in HTML
<style type="text/css">
h1 {
color: purple;
}
</style>
External stylesheet
https://quickref.me/html 6/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
<head>
...
<link rel="stylesheet" href="style.css"/>
</head>
# HTML5 Tags
Document
<body>
<header>
<nav>...</nav>
</header>
<main>
<h1>QuickRef.ME</h1>
</main>
<footer>
<p>©2023 QuickRef.ME</p>
</footer>
</body>
Header Navigation
<header>
<nav>
<ul>
<li><a href="#">Edit Page</a></li>
<li><a href="#">Twitter</a></li>
https://quickref.me/html 7/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
<li><a href="#">Facebook</a></li>
</ul>
</nav>
</header>
HTML5 Tags
https://quickref.me/html 8/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
HTML5 Video
↓ Preview
0:05 / 0:05
HTML5 Audio
<audio controls
src="https://interactive-
examples.mdn.mozilla.net/media/cc0-audio/t-rex-
roar.mp3">
https://quickref.me/html 10/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
↓ Preview
HTML5 Ruby
<ruby>
汉 <rp>(</rp><rt>hàn</rt><rp>)</rp>
字 <rp>(</rp><rt>zì</rt><rp>)</rp>
</ruby>
↓ Preview
hàn zì
汉 字
HTML5 kdi
<ul>
<li>User <bdi>hrefs</bdi>: 60 points</li>
<li>User <bdi>jdoe</bdi>: 80 points</li>
<li>User <bdi><إيان/bdi>: 90 points</li>
</ul>
↓ Preview
https://quickref.me/html 11/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
HTML5 progress
HTML5 mark
I Love QuickRef.ME
# HTML Tables
Table Example
<table>
<thead>
<tr>
<td>name</td>
<td>age</td>
</tr>
</thead>
<tbody>
<tr>
<td>Roberta</td>
https://quickref.me/html 12/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
<td>39</td>
</tr>
<tr>
<td>Oliver</td>
<td>25</td>
</tr>
</tbody>
</table>
<td> Attributes
https://quickref.me/html 13/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
See: td#Attributes
<th> Attributes
See: th#Attributes
# HTML Lists
Unordered list
<ul>
<li>I'm an item</li>
<li>I'm another item</li>
<li>I'm another item</li>
</ul>
https://quickref.me/html 14/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Ordered list
<ol>
<li>I'm the first item</li>
<li>I'm the second item</li>
<li>I'm the third item</li>
</ol>
Definition list
<dl>
<dt>A Term</dt>
<dd>Definition of a term</dd>
<dt>Another Term</dt>
<dd>Definition of another term</dd>
</dl>
# HTML Forms
Form tags
https://quickref.me/html 15/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
↓ Preview
Email:
Password:
Login
Remember me
https://quickref.me/html 16/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Input tags
<label for="Name">Name:</label>
<input type="text" name="Name" id="">
↓ Preview
Username:
Textarea tags
https://quickref.me/html 17/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
↓ Preview
Radio Buttons
↓ Preview
Male Female
Radio buttons are used to let the user select exactly one
Checkboxes
↓ Preview
https://quickref.me/html 18/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Soccer Baseball
Select tags
<label for="city">City:</label>
<select name="city" id="city">
<option value="1">Sydney</option>
<option value="2">Melbourne</option>
<option value="3">Cromwell</option>
</select>
↓ Preview
City: Sydney
Fieldset tags
<fieldset>
<legend>Your favorite monster</legend>
<input type="radio" id="kra" name="m">
<label for="kraken">Kraken</label><br/>
<input type="radio" id="sas" name="m">
<label for="sas">Sasquatch</label>
</fieldset>
↓ Preview
https://quickref.me/html 19/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Kraken
Sasquatch
Datalist tags(HTML5)
↓ Preview
Choose a browser:
https://quickref.me/html 20/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
↓ Preview
https://quickref.me/html 21/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Maximum number of
maxlength="…"
characters
Minimum number of
minlength="…"
characters
https://quickref.me/html 22/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
autofocus Be focused
Input types
type="checkbox"
type="radio"
type="hidden"
type="text"
type="password"
type="image"
type="reset" Reset
https://quickref.me/html 23/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
type="button" Button
type="submit" Submit
type="color"
type="date" dd-mm-yyyy
type="time" --:--
type="email"
type="tel"
type="url"
type="number"
type="search"
type="range"
https://quickref.me/html 24/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
<meta charset="utf-8">
https://quickref.me/html 25/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
<!-- ua -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,c
Twitter Cards
https://quickref.me/html 26/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Geotagging
See: Geotagging
# Also see
HTML 4.01 Specification (w3.org)
Related Cheatsheet
https://quickref.me/html 27/28
4/26/25, 4:07 PM HTML Cheat Sheet & Quick Reference
Recent Cheatsheet
https://quickref.me/html 28/28