<title>

Every XHTML document must have a <title> element in the <head> section. The title element is used to identify the document.

Contents

text only

Attributesattributes

values

(Default are bolded)

description
(none)
Examples


Example:

<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE html PUBLIC "-//OMA//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd">

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

<head>

<title>Phonebook</title>

</head>

<body>

<ul>

<li> <a href="http://192.168.178.200/rap/Telephonebooks/Company/company.html">Company</a> </li>

<li> <a href="http://192.168.178.200/rap/Telephonebooks/User/user.html">User</a> </li>

<li> <a href="http://192.168.178.200/rap/Telephonebooks/Personal/personal.html">Personal</a> </li>

</ul>

</body>