Tag WML <strong>

L'élément <strong> définit un texte fort.

Les attributs:

Cet élément prend en charge les attributs suivants:

Attribut Valeur La description
xml: lang language_code Définit la langue utilisée dans l'élément
classe chaîne Définit un nom de classe pour l'élément.
id ID d'élément Un identifiant unique pour l'élément.

Exemple:

Voici l'exemple montrant l'utilisation de cet élément.

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN"
"http://www.wapforum.org/DTD/wml12.dtd">

<wml>

<card title="Text Formatting">
<p>
  <b>bold text</b><br/>
  <big>big text</big><br/>
  <em>emphasized text</em><br/>
  <i>italic text</i><br/>
  <small>small text</small><br/>
  <strong>strong text</strong><br/>
  <u>underlined text</u>
</p>
</card>

</wml>

Cela produira le résultat suivant: