<head>

The <head> element contains information about the current document, such as its title, that is not considered document content.

Contents

Must contain one <title> element; may contain any number of the following elements: <meta>.

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>