Content:
<cite> tag
<code> tag
<dfn> tag
<em> tag
<kbd> tag
<samp> tag
<strong> tag
<var> tag
cite tag
This is ququqa web site.
HTML contents:
This is <cite> ququqa </cite> web site.
Back to top
code tag
Example of code tag:
int i =47;
void f() { cout <<"f()"<< endl; }
HTML contents:
<code> int i =47;
void f() { cout<< "f()"<< endl; }
</code>
Back to top
dfn tag
In text something is defined.
HTML content:
In text something is <dfn> defined </dfn>.
Back to top
em tag
The <em> tag tells the client browser to present the enclosed text with emphasis.
Something is emphasis but something is not!
HTML content:
Something is <em> emphasis </em> but something is not!
Back to top
kbd tag
The <kbd> tag indicates text that is typed on the keyboard.
Type quit to exit the utility, or type menu to return to the main menu.
HTML content:
Type <kbd> quit </kbd> to exit the utility, or type <kbd> menu </kbd> to return to the main menu.
Back to top
samp
The ae character sequence may be converted to the æ ligature if desired.
HTML content:
The <samp>ae</samp> character sequence may be converted to the æ ligature if desired.
Back to top
strong
This is forbidden here!.
HTML content:
This is <strong>forbidden</strong> here!
Back to top
var
<var> is used to indicate a variable or user-supplied value.
The variable buffor can contian 256 characters.
HTML content:
The variable <var>buffor</var> can contian 256 characters.
Back to top
Back
Back to main page