Wednesday, August 24, 2011

HTML Inline-level tags

Some more Inline-level tags with example -:
<html >
<head>
  <title>
Phrase Elements</title>
</head>

<body bgcolor="#FFFFFF">

  <p> EM
: Phrase elements can give <em>meaning</em> to your document!
  </p>

  <p> STRONG:
Phrase elements can give <strong>meaning</strong> to your
  document!
  </p>

  <p> Q:
Phrase elements can give <q>meaning</q> to your document!
  </p>

  <p> CODE:
Phrase elements can give <code>meaning</code> to your
  document!
  </p>

  <p> ABBR:
Phrase elements can give <abbr title="meaning">m.</abbr> to your document!
  </p>

  <p> ACRONYM:
Phrase elements can give <acronym title="lots of meaning">LOM</acronym> to
 
your document!
  </p>

  <p> DFN:
Phrase elements can give <dfn title="meaning and purpose">meaning</dfn> to your document!
  </p>

  <p> KBD:
Phrase elements can give <kbd>meaning</kbd> to your document!
  </p>

  <p> SAMP:
Phrase elements can give <samp>meaning</samp> to your
  document!
  </p>

  <p> VAR:
Phrase elements can give <var>meaning</var> to your document!
  </p>

</body>
</html>
 
OUTPUT- Some more Inline-level tags with example -: Phrase Elements
EM: Phrase elements can give meaning to your document!
STRONG: Phrase elements can give meaning to your document!
Q: Phrase elements can give meaning to your document!
CODE: Phrase elements can give meaning to your document!
ABBR: Phrase elements can give m. to your document!
ACRONYM: Phrase elements can give LOM to your document!
DFN: Phrase elements can give meaning to your document!
KBD: Phrase elements can give meaning to your document!
SAMP: Phrase elements can give meaning to your document!
VAR: Phrase elements can give meaning to your document!

No comments:

Post a Comment