<!--...--> |
Defines a comment |
<!DOCTYPE> |
Defines the document type |
<a> |
Defines a hyperlink |
<abbr> |
Defines an abbreviation |
<acronym> |
Defines an acronym (not supported in HTML5) |
<address> |
Defines contact information for the author or owner of a document |
<applet> |
Deprecated in HTML5. Defines an embedded applet. |
<area> |
Defines an area inside an image map |
<article> New |
Defines an article section |
<aside> New |
Defines sidebar content of a page |
<audio> New |
Defines audio content |
<b> |
Defines bold text |
<base> |
Defines the base URL/target for all relative URLs in a document |
<basefont> |
Not supported in HTML5, deprecated. Defines the default font, color, or size for text. |
<bdi> New |
Allows you to set a section of text that can be formatted in a different direction from other text outside it. |
<bdo> |
Defines the text direction |
<big> |
Defines big text (not supported in HTML5) |
<blockquote> |
Defines a long quotation |
<body> |
Defines the document's body |
<br> |
Defines a line break |
<button> |
Defines a clickable button |
<canvas> New |
Defines graphics, such as charts and images. The tag is only a container for graphics, you must use a script to actually draw the graphics. |
<caption> |
Defines a table caption |
<center> |
Not supported in HTML5, deprecated. Defines centered text. |
<cite> |
Defines a citation |
<code> |
Defines a piece of computer code |
<col> |
Defines attribute values for one or more columns in a table |
<colgroup> |
Defines a group of columns in a table for formatting |
<command> New |
Defines a command button, such as a radio button, checkbox, or button |
<datalist> New |
Defines a list of options for input controls. Use with the input element to define possible values. |
<dd> |
Defines a description/value of a term in a description list |
<del> |
Defines deleted text |
<details> New |
Used to describe details of a document or a part of a document |
<dfn> |
Defines a definition term |
<dialog> New |
Defines a dialog box or window |
<dir> |
Not supported in HTML5, deprecated. Defines a directory list. |
<div> |
Defines a section in a document |
<dl> |
Defines a description list |
<dt> |
Defines a term/name in a description list |
<em> |
Defines emphasized text |
<embed> New |
Defines embedded content, such as plugins. |
<fieldset> |
Defines a border around elements in a form |
<figcaption> New |
Defines a caption for a <figure> element |
<figure> New |
Specifies self-contained content, like images, diagrams, photos, code listings, etc. |
<font> |
Not supported in HTML5, deprecated. Defines font, size, and color for text. |
<footer> New |
Defines a footer for a section or document. |
<form> |
Defines an HTML form for user input. |
<frame> |
Defines a window or a frame within a frameset. |
<frameset> |
Defines a set of frames. |
<h1> to <h6> |
Defines HTML headings. |
<head> |
Contains metadata/information for the document. |
<header> New |
Defines a header for a document or section. |
<hr> |
Defines a horizontal rule. |
<html> |
Defines the root of an HTML document. |
<i> |
Defines italic text. |
<iframe> |
Defines an inline frame. |
<img> |
Defines an image. |
<input> |
Defines an input control. |
<ins> |
Defines inserted text. |
<kbd> |
Defines keyboard input. |
<keygen> New |
Specifies a key-pair generator field used for forms. |
<label> |
Defines a label for an <input> element. |
<legend> |
Defines a caption for a <fieldset> element. |
<li> |
Defines a list item. |
<link> |
Defines the relationship between a document and an external resource. |
<main> |
Specifies the main content of a document. |
<map> |
Defines an image map. |
<mark> New |
Defines marked/highlighted text. Use the <em> tag when emphasizing text. |
<menu> |
Deprecated. Defines a list/menu of commands. |
<meta> |
Defines metadata about an HTML document. |
<meter> New |
Defines a scalar measurement within a known range. |
<nav> New |
Defines a section with navigation links. |
<noframes> |
Defines an alternate content for users that do not support frames. Not supported in HTML5. |
<noscript> |
Defines an alternate content for users that do not support client-side scripts. |
<object> |
Defines an embedded object. |
<ol> |
Defines an ordered list. |
<optgroup> |
Defines a group of related options in a drop-down list. |
<option> |
Defines an option in a drop-down list. |
<output> New |
Defines the result of a calculation. |
<p> |
Defines a paragraph. |
<param> |
Defines a parameter for an object. |
<pre> |
Defines preformatted text. |
<progress> New |
Represents the progress of a task. |
<q> |
Defines a short quotation. |
<rp> New |
Used to provide parentheses around a ruby text, to be shown by browsers that do not support ruby annotations. |
<rt> New |
<rt> tag defines the interpretation or pronunciation of characters (Chinese phonetic or characters). |
<ruby> New |
<ruby> tag defines ruby annotations (Chinese phonetic or characters). |
<s> |
Deprecated. Defines strikethrough text. |
<samp> |
Defines a sample of computer code. |
<script> |
Defines a client-side script. |
<section> New |
<section> tag defines sections in a document, such as chapters, headers, footers, or other parts of the document. |
<select> |
Defines a selection list (drop-down list). |
<small> |
Defines smaller text. |
<source> New |
<source> tag defines media resources for media elements like <video> and <audio>. |
<span> |
Defines a section in a document. |
<strike> |
HTML5 does not support, deprecated. Defines strikethrough text. |
<strong> |
Defines emphasized text. |
<style> |
Defines style information for a document. |
<sub> |
Defines subscripted text. |
<summary> New |
<summary> tag includes the heading for the details element, which is used to describe detailed information about a document or document fragment. |
<sup> |
Defines superscripted text. |
<table> |
Defines a table. |
<tbody> |
Defines the body content in a table. |
<td> |
Defines a cell in a table. |
<textarea> |
Defines a multi-line text input control. |
<tfoot> |
Defines the footer content in a table. |
<th> |
Defines a header cell in a table. |
<thead> |
Defines the header content in a table. |
<time> New |
Defines a date or time, or both. |
<template> New |
Defines some content that is hidden when the page loads. |
<title> |
Defines the title of a document. |
<tr> |
Defines a row in a table. |
<track> New |
<track> tag specifies external text tracks for media elements like the video element. |
<tt> |
Defines teletype text. |
<u> |
Deprecated. Defines underlined text. |
<ul> |
Defines an unordered list. |
<var> |
Defines a variable part of the text. |
<video> New |
<video> tag defines a video, such as a movie clip or other video streams. |
<wbr> New |
Specifies where in the text it would be appropriate to add a line break. |