Pages

Monday, January 3, 2011

The Superscript Element



The superscript <sup> element is used to set the text as superscript in which the text is raised slightly higher. Th superscript element is useful if the content you're writing is all about mathematics or chemistry.


Listed below are the most common attributes you can use for the superscript element:
  • class - provides the class or classes of the heading. This attribute is used to identify the name of the style class or classes to be used for rendering.
  • id - provides a unique name for the heading.
  • lang - provides the language in which the enclosed content is coded.
  • style - provides a cascading style sheet (CSS) properties to the heading.
  • title - privides a text title for the heading. Most web browser displays the value of the title as "tooltip".

Here's an example on how to use the superscript <sup> element:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
         <meta http-equiv="Content-Type" content="text/html;
charset=utf-8" />
         <mate name="keywords" content="blog, web development" />
         <title>the SUPERSCRIPT element</title>
     </head>

     <body>
       <h1>
         the SUPERSCRIPT element
       </h1>
       <p>
            MATH EQUATIONS
            <br /><br />
            (5x<sup>2</sup>y<sup>5</sup>)(-4x<sup>4</sup>y<sup>3</sup>)
            <br />
            25r<sup>2</sup> - 60rs + 36s<sup>2</sup>
       </p>
   </body>
</html>

0 comments:

Post a Comment