HTML Samp Tag

Posted The: 29/05/2009 At: 13:43

The HTML samp element is used to markup samples of source code, such as HTML, css, JavaScript. Etc. Rendering code as text is done by replacing ">" with "&gt;" and "<" with "&lt;".

Most sites are using pre instead.

Attributes

Standard Attributes

Attribute:Value:Description:DTD:
AttrsOther AttributesCommon, Event, I18nSTF

DTD. Defines which document type the attribute is allowed. S=Strict, T=Transitional, F=Frameset.

Example

The below shows how to markup code samples in HTML pages, using samp tags.

 <samp>
  &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt;
&lt;html lang="en"&gt;

  &lt;head&gt;
    &lt;title&gt;My first Website&lt;/title&gt;
  &lt;/head&gt;

  &lt;body&gt;
    &lt;p&gt;My first Website.&lt;/p&gt;
  &lt;/body&gt;

&lt;/html&gt;
 </samp>

Comments: [0]

© Brugbart Webdesign