HTML Tags and Attributes
Head Group
<head>
Defines information about the document.
<title>
Defines the title of a document.
<link>
Defines relationship to external resources.
<meta>
Defines metadata about the HTML document.
<style>
Defines internal CSS rules.
Sectioning Group
<article>
Independent, self-contained content.
<aside>
Content aside from main content.
<main>
Main content of the document.
<div>
Generic container element.
<fieldset>
Groups form controls together.
Grouping Group
<p>
Paragraph of text.
<ol>
Ordered list.
<ul>
Unordered list.
<dl>
Description list.
Text Group
<span>
Inline text container.
<br>
Line break.
<h1>–<h6>
Heading levels.
<strong>
Strong importance.
Table Group
<table>
Creates a table.
<tr>
Defines a table row.
<td>
Defines a table cell.
<th>
Defines a header cell.
Form Group
<form>
Defines a form.
action
URL where form data is sent.
target
Where response is displayed.
method
GET or POST.
autocomplete
Enable or disable autocomplete.
novalidate
Disable form validation.