HOME            MAIN            NEXT            PREV

HTML Physical Phrase Markup Summary


Physical Phrase Markup (Physical Highlighting):

B, BDO, BIG, BLINK, FONT, I, MARQUEE, NOBR, S, SMALL, SPAN, SUB, SUP, TT, U

Usage:                <NAME>...(</NAME>)  
Can Contain:       characters, character highlighting, A, APPLET, BR, IMG,
                           BASEFONT, MAP, SCRIPT, INPUT, SELECT, TEXTAREA                           
Can Be Inside:    ADDRESS, BLOCKQUOTE, BODY, CENTER, DIV, FORM, PRE,
   
                       DD, DT, LI, P, TD, TH, Hn,
                          A, CAPTION, character highlighting

Attributes:           none (except for BDO, FONT, MARQUEE--see below)


TOP

B Element: <B>boldface</B>
B marks a text block to be rendered in boldface. Lynx uses underline.


TOP

BDO Element: <BDO DIR="ltr">Bi-directional Overide Element</BDO>
BDO is text-level markup that marks a section of text for bi-directional override. DIR is a mandatory attribute for BDO. Examples:

Attributes for BDO are the same as attributes for Q
TOP

BIG Element: <BIG>Text with Enlarged Font</BIG>
BIG marks text that should be rendered, when possible, with a font slightly larger than the font of the surrounding text. Enclosed images are not effected. BIG is ignored if a larger font is not available. BIG is equivalent to a FONT element with <FONT SIZE="+1">. Note that BIG is not allowed inside PRE.


TOP

BLINK Element: <BLINK>blinking text</BLINK>
(Netscape Navigator Only) BLINK marks the enclosed text as blinking--browsers generally flash this text on and off. BLINK affects only enclosed text, and has no effect on enclosed images, FORM input elements (although regular text inside a FORM can be rendered as blinking), or list item markers (bullets, numbers, etc.).


TOP

FONT Element: <FONT>selected text font size and color</FONT>
FONT marks text that should be rendered in modified color, size, or font face. FONT has no effect on enclosed IMG elements. FONT is not allowed in PRE


TOP

I Element: <I>italics</I>. Example: italics


TOP

MARQUEE Element: <MARQUEE>A Scrolling Text Marquee</MARQUEE> (Internet Explorer only)
Usage:                <MARQUEE>...(</MARQUEE>)  
Can Contain:       characters                  
Can Be Inside:    Unspecified; probably: ADDRESS, BLOCKQUOTE, BODY, CENTER, DIV, FORM, MULTICOL, PRE,
   
                       DD, DT, LI, P, TD, TH, Hn,
                          A, APPLET, NOEMBED, OBJECT, CAPTION, character highlighting

Attributes:           ALIGN, BEHAVIOR, BGCOLOR, DIRECTION, HEIGHT, HSPACE, LOOP, 
   
                       SCROLLAMOUNT, SCROLLDELAY, VSPACE, WIDTH

MARQUEE
denotes a text string to be scrolled horizontally on the display; the content of the element is the text to be scrolled. 


TOP


NOBR Element:
<NOBR>No Line Break</NOBR>
Usage:                <NOBR>...(</NOBR>)  
Can Contain:       Unspecified; probably: characters, character highlighting, 
                           A, BASEFONT, BR, IMG, MAP, NOSCRIPT, SCRIPT, SPACER, WBR,
                           INPUT, SELECT, TEXTAREA
 
                          
APPLET, EMBED, NOEMBED, OBJECT
Can Be Inside:    Unspecified; probably: ADDRESS, BLOCKQUOTE, BODY, CENTER, DIV, FORM, MULTICOL,
   
                       DD, DT, LI, P, TD, TH, Hn,
                          A, APPLET, NOEMBED, OBJECT, CAPTION, character highlighting

Attributes:           none

NOBR
marks a block of text that cannot contain line breaks.


TOP

S Element: <S>Strike-Through</S>. Example: strike-through


TOP

SMALL Element: <SMALL>Text with Reduced Font</SMALL>
SMALL marks text that should be rendered, when possible, with a font slightly smaller than the font of the surrounding text. Enclosed images are not effected. SMALL is ignored if a smaller font is not available. SMALL is equivalent to a FONT element with <FONT SIZE="-1">. Note that SMALL is not allowed inside PRE.


TOP

SPAN Element: This is <SPAN>stylesheet-specified styling</SPAN> text.


TOP

SUB Element: <SUB>Subscript</SUB>
SUB marks text that should be rendered as a subscript relative to the preceding text. The content of a SUB may also be rendered in a smaller font, if possible. This is an unsafe element for browsers that do not support it, since subscripted text will be incorrectly presented by a browser that does not understand SUB. Example: CaCO<SUB>3</SUB>: CaCO3
Note that SUB is not allowed inside PRE


TOP

SUP Element: <SUP>Superscript</SUP>
SUP marks text that should be rendered as a superscript relative to the preceding text. The content of a SUP may also be rendered in a smaller font, if possible. This is an unsafe element for browsers that do not support it, since subscripted text will be incorrectly presented by a browser that does not understand SUP. Example: x<SUP>2</SUP>: x2
Note that SUP is not allowed inside PRE


TOP

TT Element: <TT>Fixed-Width Typewriter Font</TT>
TT marks a section to be rendered with a fixed-width typewriter font. Example: <TT>Fixed-Width Typewriter Font</TT>: Fixed-Width Typewriter Font


TOP

U Element: <U>underline</U>. Example: underline


HOME            MAIN