HTML

Some Important Tags

Comments

<!-- -->

Basics

<!DOCTYPE>
<html></html>
<head></head>
<body></body>

Imports

<style></style>
<script></script>
<link></link>

Information

<title></title>
<meta></meta>

Structure

<div></div>
<span></span>

Organization

<header></header>
<main></main>
<footer></footer>
<nav></nav>

Hyperlinks

<a></a>

Text

<br>
<p></p>
<h1></h1> through <h6></h6>

Media

<img>
<source>
<picture></picture>
<video></video>
<audio></audio>
<area>
<map></map>

Lists

<ul></ul>
<ol></ol>
<li></li>
<dl></dl>
<dt></dt>
<dd></dd>

Tables

<table></table>
<tr></tr>
<td></td>
<th></th>
<thead></thead>
<tbody></tbody>
<tfoot></tfoot>
<colgroup></colgroup>
<col>

Forms

<form></form>
<label>
<input>
<textarea></textarea>
<select></select>
<option></option>
<button>