// References / HTML SPAN Tag

Posted The: 14/05/2008 - AT: 21:36

Edited The: 02/09/2008 - AT: 18:45

The <span> Tag is used to apply styles to sections of text, inside inline elements such as, links, or paragraphs.

Usage

Span can be used as a replacement for the deprecated font tag, it is recommended that webdesigners begin using span instead of font, when making new pages.

Attributes

Standard Attributes

Attribute:Value:Description:DTD:
AttrsOther AttributesCommon, I18n, EventSTF

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

Examples

The Simple Example.

<p>This is My first <span>Website</span>.</p>

The Complete Examples

The Complete Examples.

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

  <head>
    <title>Brugbart Span Example</title>
    <style type="text/css">
    span {
     text-decoration: underline;
     font-weight: bold;
    }
    </style>
  </head>

  <body>
    <p>This is My first <span>Website</span>.</p>
    <p>This is an example using <span>Span Tags</span><.</p>
  </body>

</html>

Each time span acurs, it will have the styles applyed. You can also give the span tag a class, or an id like below.

  <head>
    <title>Brugbart Span Example</title>
    <style type="text/css">
    .span01 {
     text-decoration: underline;
     font-weight: bold;
    }
    #UniqueSpan {
     font-weight: bold;
     font-size: 0.5em;
    }
    </style>
  </head>

  <body>
    <p>This is My first<span class="span01">Website</span>.</p>
    <p>This is an example using <span class="span01">Span Tags</span>.</p>
    <p>This is an example using <span id="UniqueSpan">Span Tag with an ID.</span>.</p>
  </body>

Note: Ids are unique, while classes are used to group elements.

Stumble It!

Author: BlueBoden

Comments: [0]

  1. HTML Tutorial
  2. CSS Tutorial
  3. XHTML Tutorial
  4. RSS Tutorial
  5. PHP Tutorial
  6. htaccess Tutorial
  7. Server Tutorial
  8. SEO Tutorial

Checked At:06:24

6 Guests

0 Users

Online doing the past 15 Minutes!

PageRanking.dk - Flere hits og højere PageRank - GRATIS tilmelding!

This page was created in 0.114871025085 seconds

Welcome Guest