Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The <body> element contains the element content that make up the main body of the document. The <body> element is contained in the root element (<html>).

Contents

Either one or more of the elements: <p> (must be the first element), <ul> or exactly one of the elements: <ul>, <form>

Attributesattributes

values

(Default are bolded)

description
style

font-size:
small
medium
large

Specifies style information for the current
document.

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>