HTML cheat sheet

Here's a more comprehensive HTML cheat sheet that includes some of the most commonly used HTML tags, attributes, and properties:

Tag                                  Description

<!DOCTYPE html>                      Declares the document type
<html>                               Defines the root element of an HTML document
<head>                               Contains metadata for the HTML document
<title>                              Defines the title of the HTML document
<meta>                               Provides metadata about the HTML document
<body>                               Contains the visible content of the HTML document
<header>                             Defines a header for a section or document
<footer>                             Defines a footer for a section or document
<main>                               Defines the main content of a document
<section>                            Defines a section in a document
<article>                            Defines an article in a document
<aside>                              Defines content aside from the page content
<nav>                                Defines a navigation bar/menu
<h1> - <h6>                          Defines headings of different sizes
<p>                                  Defines a paragraph
<a>                                  Defines a hyperlink
<img>                                Defines an image
<video>                              Defines a video
<audio>                              Defines an audio clip
<iframe>                             Defines an inline frame
<ul>                                 Defines an unordered list
<ol>                                 Defines an ordered list
<li>                                 Defines a list item
<dl>                                 Defines a description list
<dt>                                 Defines a term in a description list
<dd>                                 Defines a description in a description list
<table>                              Defines a table
<tr>                                 Defines a table row
<th>                                 Defines a table header cell
<td>                                 Defines a table data cell
<form>                               Defines an HTML form for user input
<input>                              Defines an input field
<select>                             Defines a drop-down list
<option>                             Defines an option in a drop-down list
<button>                             Defines a clickable button
<label>                              Defines a label for an input element
<fieldset>                          Defines a set of related form elements
<legend>                             Defines a caption for a <fieldset> element
<textarea>                          Defines a multi-line input field
<progress>                           Represents the progress of a task
<meter>                              Defines a scalar measurement within a known range
<details>                            Defines additional details that the user can view or hide
<summary>                            Defines a heading for the <details> element
<blockquote>                         Defines a block quotation
<q>                                  Defines a short quotation
<cite>                               Defines the title of a work
<code>                               Defines a piece of computer code
<em>                                 Defines emphasized text
<strong>                             Defines important text
<small>                              Defines smaller text
<sub>                                Defines subscripted text
<sup>                                Defines superscripted text
<u>                                  Defines underlined text
<s>                                  Defines text that is no longer correct or relevant
<del>                                Defines deleted text
<ins>                                Defines inserted text
<br>                                 Inserts a single line break
<hr>                                 Defines a thematic change in the content
<wbr>                                Defines a word break opportunity
<span>                               Defines a small part of a document
<div>                                Defines a section of a document
<style>                              Defines a style sheet
<script>                             Defines a client-side script
<noscript>                           Defines alternate content to display when a script is not executed
<meta>                               Provides metadata about the HTML document

This cheat sheet includes tags for creating basic web page elements like headings, paragraphs, links, images, lists, tables, and forms, as well as tags for formatting text, displaying multimedia, and creating interactivity with JavaScript.