3.2 Hypertext Markup Language (XHTML)

3.2.1 Basic Features

HTML is the foundation for publishing on the web.

Structure

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>...</title>
  </head>
  <body>
    ...
  </body>
</html>



Text

h1, h2, h3, h4, h5, h6,
p, blockquote, pre, q,
br,
strong, em,
abbr, acronym, address, cite, code, dfn, kbd, samp, var,
span, div



Hypertext

a



List

ol, ul, li
dl, dt, dd



Forms

form, input, label, select, option, textarea



Tables

table, tr, td, th, caption



Image

img



Object

object, param



Meta information

meta



Link

link



Base

base

[example] [an introduction to HTML]

3.2.2 History