Core HTML

HTML Elements Table

Red indicates a deprecated tag.

HTML Elements
Tag Name Description Examples
<!-- *comment* -->
Comment Contains text that is not rendered
<!-- Glory to God in the Highest -->
<!DOCTYPE html>
Document type Indicates that this is an HTML document
<!DOCTYPE html>
<html>
  <head>
    <title>XoaX.net's HTML</title>
  </head>
  <body>
    <h1>Catechism of the Catholic Church</h1>
    <h3>Prologue</h3>
    <ol>
      <li>The life of man - to know and love God</li>
    </ol>
  </body>
</html>
<a>
Anchor Links to another page
<a href="http://xoax.net/">xoax.net</a>
<abbr>
Abbreviation A shortened version of something else
Jesus was crucified in 33<abbr title="anno Domini">AD</abbr>.
<acronym>
Acronym Spells out another word
It reads <acronym title="Requiescat in pace">RIP</acronym>
<address>
Address Contact information
<a href="mailto:info@xoax.net">XoaX.net</a><br>
         1234 Park Avenue<br>
         Wausau, WI<br>
<applet>
Applet Embed a Java applet
<applet code="Cross.class" width="400" height="400">
  This Java applet draws a cross.
</applet>
<area>
Area Specifies a clickable area of an image
<img src="eucharist.jpg" usemap="#eucharistmap">
<map name="eucharistmap">
  <area shape="circle" coords="100,50,40" href="eucharist.htm">
</map>
<article>
Article Specifies self-contained content
<article>
  <h1>The Power of the Gospel</h1>
  <p>For I am not ashamed of the gospel: it is the power of God
  for salvation to every one who has faith, to the Jew
  first and also to the Greek. For in it the righteousness
  of God is revealed through faith for faith; as it is written,
  "He who through faith is righteous shall live."</p>
</article>
<aside>
Aside Specifies some content aside from the current content
<p>But the free gift is not like the trespass.</p>
<aside>
  <p>For if many died through one man's trespass, much more have
  the grace of God and the free gift in the grace of that one man
  Jesus Christ abounded for many.</p>
</aside>
<audio>
Audio Play audio files
<audio controls>
 <source src="StabatMater.mp4" type='audio/mp4'>
 <source src="StabatMater.oga"type='audio/ogg; codecs=vorbis'>
 <p>The audio element is not supported</p>
</audio>
<b>
Bold Makes text bold
<b>God</b> is love.
<base>
Base Specifies the base URL for relative URLs
<head>
  <base href="http://xoax.net/" target="_blank">
</head>
<body>
  <img src="Pentecost.jpg" alt="Pentecost">
</body>
<basefont>
Basefont Sets the default font properties for text in this document
<head>
  <basefont color="black" size="10">
</head>
<body>
  <h1>XoaX.net</h1>
  <p>God is love.</p>
</body>
<bdi>
Bi-Directional Isolation Separates text that might be formatted in a different direction
<p>User <bdi>ahfad</bdi> is logged in.</p>
<bdo>
Bi-Directional Override Overrides the current text direction
<bdo dir="rtl">
  <p>This will be written backwards.</p>
</bdo>
<big>
Big Makes text larger
Give <big>God</big> the praise!
<blockquote>
Blockquote Specifies a large section of quoted text
<p>In the his letter to the Romans, Paul writes,</p>
<blockquote cite="https://www.biblegateway.com/">
  There is therefore now no condemnation for those who are in
  Christ Jesus. For the law of the Spirit of life in Christ
  Jesus has set me free from the law of sin and death. For God
  has done what the law, weakened by the flesh, could not do:
  sending his own Son in the likeness of sinful flesh and for
  sin, he condemned sin in the flesh, in order that the just
  requirement of the law might be fulfilled in us, who walk
  not according to the flesh but according to the Spirit.
</blockquote>
<body>
Body Specifies the content portion
<html>
  <head>
  </head>
  <body>
    <p>I consider that the sufferings of this present time are
    not worth comparing with the glory that is to be revealed
    to us.</p>
  </body>
</html>
<br>
Line Break This adds a line break
I lie down and sleep;<br />
I wake again, for the Lord sustains me.<br />
<button>
Button Adds a button that may contain text or images
<button type="button" onclick="alert('Deliver me')">Arise!</button>
<canvas>
Canvas A region for drawing
<canvas id="Rect" width="150" height="150"></canvas>

<script type="text/javascript">
  var qRectCanvas = document.getElementById("Rect");
  var qRectContext = qRectCanvas.getContext("2d");
  qRectContext.fillStyle = "red";
  qRectContext.fillRect(15, 30, 60, 90);
</script>
<caption>
Caption A caption for a table
<table>
  <caption>Saints' Feast Days</caption>
  <tr>
    <th>Saint</th>
    <th>Feast Day</th>
  </tr>
  <tr>
    <td>Monica</td>
    <td>August 27</td>
  </tr>
</table>
<center>
Center Aligns text in the middle
<center>Be gracious to me, O Lord</center>
<cite>
Citation Specifies the title of a work
<cite>Revised Standard Version</cite> of the Bible,
Copyright 1946, 1952, and 1971
<code>
Code Specifies computer code
<code>cout << "God is love!" << endl;</code>
<col>
Column Specifies properties for a column of a table
<table>
  <colgroup>
    <col style="background-color:gray">
    <col style="background-color:white">
  </colgroup>
  <tr>
    <th>Theologian</th>
    <th>Book</th>
  </tr>
  <tr>
    <td>Augustine</td>
    <td>Confessions</td>
  </tr>
</table>
<colgroup>
Column Group Specifies a group of columns
<table>
  <colgroup>
    <col style="background-color:gray">
    <col style="background-color:white">
  </colgroup>
  <tr>
    <th>Theologian</th>
    <th>Book</th>
  </tr>
  <tr>
    <td>Augustine</td>
    <td>Confessions</td>
  </tr>
</table>
<data>
Data Specifies a machine-readable value
<ul>
  <li><data value="1">Baptism</data></li>
  <li><data value="2">Eucharist</data></li>
  <li><data value="3">Confirmation</data></li>
</ul>
<datalist>
Datalist Specifies fixed values for an input element
<form action="apostles.php" method="post">
  <input list="apostles" name="apostle">
  <datalist id="apostles">
    <option value="Peter">
    <option value="Paul">
    <option value="Luke">
    <option value="John">
  </datalist>
  <input type="submit">
</form>
<dd>
Definition List Definition Specifies a definition in a definition list
<dl>
  <dt>Hypostatic union</dt>
  <dd>The unity of the human and the divine in Christ</dd>
  <dt>Ex opere operato</dt>
  <dd>From the work worked</dd>
</dl>
<del>
Deleted Specifies deleted text
Here am I! Send <del>send</del> me.
<details>
Details Specifies details that can be hidden
<details>
  <summary>Revised Standard Version of the Bible</summary>
  <p>Copyright 1946, 1952, and 1971 the Division
  of Christian Education of the National Council of
  the Churches of Christ in the United States of
  America. Used by permission. All rights reserved.</p>
</details>
<dfn>
Definition Specifies the defining instance of a term
<p>The <dfn>trinity</dfn> means that God exists in three persons.</p>
<dialog>
Dialog Displays a dialog over the HTML and not within the layout scheme.
<dialog open>O death, where is thy victory?</dialog>
<dir>
Directory List Specifies a directory list
<dir>
  <li>Baptism</li>
  <li>Eucharist</li>
  <li>Confirmation</li>
</dir>
<div>
Division Groups a set of HTML elements into a block element
<div>
  <h1>The Resurrection of Christ</h1>
  <p>Now I would remind you, brethren, in what terms I preached to
  you the gospel, which you received, in which you stand, by which
  you are saved, if you hold it fast--unless you believed in vain.</p>
</div>
<dl>
Definition List Specifies a list of definitions
<dl>
  <dt>Hypostatic union</dt>
  <dd>The unity of the human and the divine in Christ</dd>
  <dt>Ex opere operato</dt>
  <dd>From the work worked</dd>
</dl>
<dt>
Definition List Term Specifies a term to be defined in a definition list
<dl>
  <dt>Hypostatic union</dt>
  <dd>The unity of the human and the divine in Christ</dd>
  <dt>Ex opere operato</dt>
  <dd>From the work worked</dd>
</dl>
<em>
Emphasize Specifies text that is to be emphasized
The <em>desire</em> for God is written in the human heart
<embed>
Embed Specifies a container for an external media resource
<embed src="XoaX.swf">
<fieldset>
Fieldset Groups together a set of related controls
<form>
  <fieldset>
    <legend>Personal Information</legend>
      Name: <input type="text"><br />
      Baptism Date: <input type="text"><br />
  </fieldset>
</form>
<figcaption>
Figure Caption Specifies the caption for a figure
<figure>
  <img src="LastSupper.jpg">
  <figcaption>The Last Supper by Leonardo da Vinci</figcaption>
</figure>
<figure>
Figure Specifies a figure
<figure>
  <img src="LastSupper.jpg">
  <figcaption>The Last Supper by Leonardo da Vinci</figcaption>
</figure>
<font>
Font Specifies the properties of the font
<font face="verdana" size="4" color="blue">Come, Holy Spirit</font>
<footer>
Footer Specifies a footer of a document
<article>
  <header>
    <h1>XoaX.net's HTML</h1>
  </header>
  <p>The set of tags used in HTML is extensive.</p>
  <footer>
    <p>Written by Michael Hall</p>
  </footer>
</article>
<form>
Form Specifies a form document
<form action="login.php" method="get">
  <fieldset>
    <legend>Personal Information</legend>
      Name: <input type="text" name="sName"><br />
      Baptism Date: <input type="text" name="sBaptismDate"><br />
      <input type="submit" value="Submit">
  </fieldset>
</form>
<frame>
Frame Specifies a frame that contains a document
<frameset rows="25%, 10%, *, 25%">
  <frame src="Frame1.html">
  <frame src="Frame2.html">
  <frame src="Frame3.html">
  <frame src="Frame4.html">
</frameset>
<frameset>
Frameset Specifies a set of frames
<frameset rows="25%, 10%, *, 25%">
  <frame src="Frame1.html">
  <frame src="Frame2.html">
  <frame src="Frame3.html">
  <frame src="Frame4.html">
</frameset>
<h1> - <h6>
Headings Specifies a heading of most <h1> to least <h6> significance
<h1>Catechism of the Catholic Church</h1>
<h2>Part One: The Profession of Faith</h2>
<h3>Section One: Credo</h3>
<h4>Chapter One: Man's Capacity for God</h4>
<h5>Article 1: The Revelation of God</h5>
<h6>I. The Desire for God</h6>
<head>
Head Specifies the container for the head elements
<!DOCTYPE html>
<html>
  <head>
    <title>XoaX.net's HTML</title>
  </head>
  <body>
    <h1>Catechism of the Catholic Church</h1>
    <h3>Prologue</h3>
    <ol>
      <li>The life of man - to know and love God</li>
    </ol>
  </body>
</html>
<header>
Header Specifies the container for the introductory content
<article>
  <header>
    <h1>XoaX.net's HTML</h1>
  </header>
  <p>The set of tags used in HTML is extensive.</p>
</article>
<hr>
Horizontal Rule Specifies a break in or shift in the content
<p>I appeal to you, brethren, by the name of our
Lord Jesus Christ, that all of you agree and that there
be no dissensions among you, but that you be united in
the same mind and the same judgment.</p>
<hr />
<p>For the word of the cross is folly to those who
are perishing, but to us who are being saved it is the
power of God.</p>;
<html>
HTML Specifies the root node of an HTML document
<!DOCTYPE html>
<html>
  <head>
    <title>XoaX.net's HTML</title>
  </head>
  <body>
    <h1>Catechism of the Catholic Church</h1>
    <h3>Prologue</h3>
    <ol>
      <li>The life of man - to know and love God</li>
    </ol>
  </body>
</html>
<i>
Italics Specifies text to be italicized
The <i>desire</i> for God is written in the human heart
<iframe>
Inline Frame Specifies an HTML document to be embedded
<iframe src="http://xoax.net/"></iframe>
<img>
Image Specifies an image to be embedded
<img src="XoaXnetLogo.jpg" alt="XoaX.net Logo">
<input>
Input Specifies an input field for a form
<form action="login.php" method="get">
  <fieldset>
    <legend>Personal Information</legend>
      Name: <input type="text" name="sName"><br />
      Baptism Date: <input type="text" name="sBaptismDate"><br />
      <input type="submit" value="Submit">
  </fieldset>
</form>
<ins>
Insert Specifies an inserted portion of text
<p>I will destroy the <ins>wisdom</ins> of the wise</p>
<kbd>
Keyboard Input Specifies keyboard input
<p>Press <kbd>Enter</kbd> to continue.</p>
<label>
Label Specifies a label for a form element
<form action="login.php" method="get">
  <label for="idName">Name</label>
  <input type="text" id="idName" name="sName"><br />
</form>
<legend>
Legend Specifies a title for a field set
<form action="login.php" method="get">
  <fieldset>
    <legend>Personal Information</legend>
      Name: <input type="text" name="sName"><br />
      Baptism Date: <input type="text" name="sBaptismDate"><br />
      <input type="submit" value="Submit">
  </fieldset>
</form>
<li>
List Item Specifies an item in a list
<ul>
  <li>Baptism</li>
  <li>Eucharist</li>
  <li>Confirmation</li>
</ul>
<link>
Link Specifies a link to an exter6rnal style sheet
<head>
  <link> rel="stylesheet" rel="text/css" href="XoaX.css"</link>
</head>
<main>
Main Encapsulates the main content area of a document
<main>
  <h1>Catechism of the Catholic Church</h1>
  <article>
    <h3>Prologue</h3>
    <p>God, infinitely perfect and blessed in himself,
    in a plan of sheer goodness freely created man
    to make him share in his own blessed life.</p>
  </article>
</main>
<map>
Image Map Specifies a clickable area of an image
<img src="LastSupper.jpg" alt="Last Supper" usemap="#MapPeople">
<map name="MapPeople">
  <area shape="poly"
    coords="450, 10, 500, 20, 550, 10, 525, 200, 475, 200"
    href="Jesus.html" alt="Jesus">
  <area shape="rect" coords="20, 20, 220, 320"
    href="Peter.html" alt="Peter">
  <area shape="circle" coords="650, 150, 100"
    href="James.html" alt="James">
</map>
<mark>
Mark Specifies text to highlight
<p>For Jews demand <mark>signs</mark> and Greeks seek wisdom</p>
<meta>
Metadata Specifies machine-only visible information about the document
<head>
  <meta charset="UTF-8">
  <meta name="owner" content="XoaX.net LLC">
</head>
<meter>
Meter Specifies a scalar measurement within an interval
<meter value="28" min="0" max="50">28 out of 50</meter>
<meter value=".73" >73%</meter>
<nav>
Navigation Links Specifies set of related navigation links
<nav>
  <a href="/genesis/">Genesis</a>
  <a href="/exodus/">Exodus</a>
  <a href="/leviticus/">Leviticus</a>
  <a href="/numbers/">Numbers</a>
  <a href="/deuteronomy/">Deuteronomy</a>
</nav>
<noframes>
No Frames Specifies a version without frames
<frameset rows="25%, 10%, *, 25%">
  <frame src="Frame1.html">
  <frame src="Frame2.html">
  <frame src="Frame3.html">
  <frame src="Frame4.html">
  <noframes>Your browser does not support frames.</noframes>
</frameset>
<noscript>
No Script Specifies content for browsers that do not support JavaScript or have it disabled
<script type="text/javascript">
  document.write("XoaX.net!");
</script>
<noscript>Your browser does not support JavaScript.</noscript>
<object>
Object Specifies an object, like an swf, video, or web page, to be embedded
<object width="640" height="480" data="XoaX.swf"></object>
<ol>
Ordered List Specifies an ordered list of data items
<ol>
  <li>Baptism</li>
  <li>Eucharist</li>
  <li>Confirmation</li>
</ol>
<optgroup>
Option Group Specifies group of options
<select>
  <optgroup label="Gender">
    <option value="sMale">Male</option>
    <option value="sFemale">Female</option>
  </optgroup>
</select>
<option>
Option Specifies an selectable option
<select>
  <optgroup label="Gender">
    <option value="sMale">Male</option>
    <option value="sFemale">Female</option>
  </optgroup>
</select>
<output>
Output Specifies the result of a calculation
<form oninput="Product.value=parseInt(x.value)*parseInt(y.value)">
  <input type="number" id="x" value="9">*
  <input type="number" id="y" value="7">=
  <output name="Product" for="x y">
</form>
<p>
Paragraph Specifies a paragraph of text
<p>For they reasoned unsoundly, saying to themselves,
<q>Short and sorrowful is our life,
and there is no remedy when a man comes to his end,
and no one has been known to return from Hades.
Because we were born by mere chance,
and hereafter we shall be as though we had never been;
because the breath in our nostrils is smoke,
and reason is a spark kindled by the beating of our hearts.</q></p>
<param>
Parameter Specifies a parameter for an object
<object data="XoaX.wav">
  <param name="autoplay" value="true">
</object>
<picture>
Picture Specifies alternative images or other media to be presented
<picture>
  <source media="(min-width: 200px)" srcset="SmallLastSupper.jpg">
  <source media="(min-width: 400px)" srcset="MediumLastSupper.jpg">
  <source media="(min-width: 600px)" srcset="LargeLastSupper.jpg">
  <img src="FullLastSupper.jpg" alt="The Last Supper">
</picture>
<pre>
Preformatted Text Specifies text that preserves white space and displays in a mono-spaced font
<pre>
#include 

int main() {
    std::cout << "Deus Caritas Est!" << std::endl;
    std::cin.get();
    return 0;
}
</pre>
<progress>
Progress Bar Displays an indicator of the progress of a task
<progress value="873" max="2500" ></progress>
<q>
Quotation Specifies a quotation
<p>For they reasoned unsoundly, saying to themselves,
<q>Short and sorrowful is our life,
and there is no remedy when a man comes to his end,
and no one has been known to return from Hades.
Because we were born by mere chance,
and hereafter we shall be as though we had never been;</q></p>
<rp>
Ruby Parentheses Specifies a ruby parentheses that are displayed in browsers that do not support ruby annotations
<ruby>
晨 <rp>(</rp><rt>Ashita Toki<\rt><rp>)</rp>
</ruby>
<rt>
Ruby Text Specifies a ruby pronunciation for a ruby annotation
<ruby>
晨 <rp>(</rp><rt>Ashita Toki<\rt><rp>)</rp>
</ruby>
<ruby>
Ruby Annotation Specifies a ruby annotation for East Asian characters
<ruby>
晨 <rp>(</rp><rt>Ashita Toki<\rt><rp>)</rp>
</ruby>
<s>
Strikethrough Specifies a strikethrough for text that is no longer accurate
<p><s>Price: $499.00</s></p>
<p>Reduced price: $299.00</p>
<samp>
Sample Output Specifies the output of a computer program
<p>The program prints <samp>Deus Caritas Est!</samp></p>
<script>
Script Specifies a client-side script program that is usually JavaScript
<script type="text/javascript">
  document.writeln("Deus Caritas Est!");
</script>
<section>
Section Specifies a section of a document
<section>
  <h1>I BELIEVE IN GOD</h1>
  <p> "I believe in God": this first affirmation of the
  Apostles' Creed is also the most fundamental. the whole Creed
  speaks of God, and when it also speaks of man and of the world
  it does so in relation to God. the other articles of the Creed
  all depend on the first, just as the remaining Commandments make
  the first explicit. the other articles help us to know God better
  as he revealed himself progressively to men. "The faithful first
  profess their belief in God."</p>
</section>
<select>
Select Specifies a drop-down list that the user can select from
<select>
  <optgroup label="Gender">
    <option value="sMale">Male</option>
    <option value="sFemale">Female</option>
  </optgroup>
</select>
<small>
Small Specifies a portion of text that is to be rendered smaller
<p>Let us <small>lie in wait<small> for the righteous man,
because he is inconvenient to us and opposes our actions
he reproaches us for sins against the law,
and accuses us of sins against our training.</p>
<source>
Source Specifies a source media file to allow several alternatives
<audio controls>
 <source src="StabatMater.mp4" type='audio/mp4'>
 <source src="StabatMater.oga"type='audio/ogg; codecs=vorbis'>
 <p>No valid source file exists for your browser.</p>
</audio>
<span>
Span Specifies an inline element for styling a portion of text
<p>Let us <span style="color:red;">lie in wait<span> for
the righteous man, because he is inconvenient to us and
opposes our actions he reproaches us for sins against the law,
and accuses us of sins against our training.</p>
<strike>
Strike Specifies a strikethrough for text that is no longer accurate
<p><strike>Price: $499.00</strike></p>
<p>Reduced price: $299.00</p>
<strong>
Strong Specifies a portion of text, made bold by default, for emphasis
<p><strong>God</strong> is love.</p>
<style>
Style Specifies a style portion for a document
<!DOCTYPE html>
<html>
  <head>
    <title>XoaX.net's HTML</title>
    <style>
      h1 { color:black;}
      h3 { color:gray;}
    </style>
  </head>
  <body>
    <h1>Catechism of the Catholic Church</h1>
    <h3>Prologue</h3>
    <ol>
      <li>The life of man - to know and love God</li>
    </ol>
  </body>
</html>
<sub>
Subscript Specifies a subscripted portion of text that appears half of a line below the current line
<h1>Arithmetic Sequence</h1>
<p>a<sub>0</sub> = a, a<sub>n</sub> = a<sub>n-1</sub> + d</p>
<summary>
Summary Specifies a visible heading for a details element
<details>
  <summary>Revised Standard Version of the Bible</summary>
  <p>Copyright 1946, 1952, and 1971 the Division
  of Christian Education of the National Council of
  the Churches of Christ in the United States of
  America. Used by permission. All rights reserved.</p>
</details>
<sup>
Superscript Specifies a superscripted portion of text that appears half of a line above the current line
<h1>Quadratic Equations</h1>
<p>ax<sup>2</sub> + bx + c = 0</p>
<svg>
Scalar Vector Graphics Specifies a graphic element
<svg width="400" height="400">
  <path d="M 100 50 l 150 250" stroke="green" stroke-width="1"/>
</svg>
<table>
Table Specifies a table of data with rows and columns
<table>
  <tr>
    <th>First Name</th><th>Last Name</th><th>Age</th>
  </tr>
  <tr>
    <td>Jill</td><td>Smith</td><td>50</td>
  </tr>
  <tr>
    <td>Eve</td><td>Jackson</td><td>74</td>
  </tr>
</table>
<tbody>
Table Body Specifies the main portion of a table of data with rows and columns
<table>
  <tr>
    <th>First Name</th><th>Last Name</th><th>Age</th>
  </tr>
  <tbody>
    <tr>
      <td>Jill</td><td>Smith</td><td>50</td>
    </tr>
    <tr>
      <td>Eve</td><td>Jackson</td><td>74</td>
    </tr>
  </tbody>
</table>
<td>
Table Data Specifies a table data element
<table>
  <tr>
    <th>First Name</th><th>Last Name</th><th>Age</th>
  </tr>
  <tr>
    <td>Jill</td><td>Smith</td><td>50</td>
  </tr>
  <tr>
    <td>Eve</td><td>Jackson</td><td>74</td>
  </tr>
</table>
<template>
Template Specifies a portion of content that will be rendered
<template>
  <h1>This Heading Will Not Be Shown</h1>
</template>
<textarea>
Text Area Specifies a multi-line text input control
<textarea rows="4" cols="100">
Let us lie in wait for the righteous man,
because he is inconvenient to us and opposes our actions
he reproaches us for sins against the law,
and accuses us of sins against our training.
</textarea>
<tfoot>
Table Footer Specifies the footer portion of a table of data with rows and columns
<table>
  <thead>
    <tr>
      <th>First Name</th><th>Last Name</th><th>Age</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Jill</td><td>Smith</td><td>50</td>
    </tr>
    <tr>
      <td>Eve</td><td>Jackson</td><td>74</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td>Average</td><td>Age</td><td>62</td>
    </tr>
  </tfoot>
</table>
<th>
Table Header Specifies a table header element
<table>
  <tr>
    <th>First Name</th><th>Last Name</th><th>Age</th>
  </tr>
  <tr>
    <td>Jill</td><td>Smith</td><td>50</td>
  </tr>
  <tr>
    <td>Eve</td><td>Jackson</td><td>74</td>
  </tr>
</table>
<thead>
Table Header Specifies the header portion of a table of data with rows and columns
<table>
  <thead>
    <tr>
      <th>First Name</th><th>Last Name</th><th>Age</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Jill</td><td>Smith</td><td>50</td>
    </tr>
    <tr>
      <td>Eve</td><td>Jackson</td><td>74</td>
    </tr>
  </tbody>
</table>
<time>
Time Specifies the human readable date/time for a machine readable datetime
<p>The Christmas concert is at
  <time datetime="2048-12-25 14:00">2:00pm on December 25</time>
</p>
<title>
Title Specifies the title of a document
<!DOCTYPE html>
<html>
  <head>
    <title>XoaX.net's HTML</title>
  </head>
  <body>
    <h1>Catechism of the Catholic Church</h1>
    <h3>Prologue</h3>
    <ol>
      <li>The life of man - to know and love God</li>
    </ol>
  </body>
</html>
<tr>
Table Row Specifies a row of a table
<table>
  <tr>
    <th>First Name</th><th>Last Name</th><th>Age</th>
  </tr>
  <tr>
    <td>Jill</td><td>Smith</td><td>50</td>
  </tr>
  <tr>
    <td>Eve</td><td>Jackson</td><td>74</td>
  </tr>
</table>
<track>
Track Specifies a track for a media element
<video width="640" height="480" controls>
  <source src="TheRoadNotTakenAnalysis.ogg" type="video/ogg" >
  <source src="TheRoadNotTakenAnalysis.mp4" type="video/mp4" >
  <track src="Text.vtt" kind="subtitles" srclang="en">
</video>
<tt>
Teletype Specifies Teletype text
<p>Press <tt>Enter</tt> to continue.</p>
<u>
Underline Underlines text
<p><u>God</u> is love.</p>
<ul>
Unordered List Specifies an unordered list of data items
<ul>
  <li>Baptism</li>
  <li>Eucharist</li>
  <li>Confirmation</li>
</ul>
<var>
Variable Specifies a variable
<h1>Quadratic Equations</h1>
<p>a<var>x</var><sup>2</sub> + b<var>x</var> + c = 0</p>
<video>
Video Specifies a video media element
<video width="640" height="480" controls>
  <source src="TheRoadNotTakenAnalysis.ogg" type="video/ogg" >
  <source src="TheRoadNotTakenAnalysis.mp4" type="video/mp4" >
</video>
<wbr>
Wordbreak Specifies an opportunity to break a word for wrapping to the next line
<p><q>Let us lie in wait for the right<wbr />eous man,
be<wbr />cause he is in<wbr />con<wbr />ven<wbr />ient
to us and op<wbr />pos<wbr />es our ac<wbr />tions;</q></p>
 
 

© 2007–2024 XoaX.net LLC. All rights reserved.