Web Development HTML Guide - Learn HTML
Developer Tutorials
ASP
CGI & Perl
CSS
Flash
HTML
Java
JavaScript
Linux
MySQL
PHP
Photoshop
Python
Wireless
XML



Developer Manuals
Learn HTML
Learn PHP
Learn MySQL
Learn CSS
Learn Pear


Developer Scripts
ASP Scripts
ASP.NET Scripts
CGI & Perl Scripts
Flash Scripts
Java Scripts
JavaScript Scripts
PHP Scripts
Python Scripts
Remotely Hosted Scripts
Tools & Utilities Scripts
XML Scripts

Developer Resources
Developer Tools
Developer News
Developer Forums
Developer Content
Developer Book Reviews
Survey Software

Web Hosting Directory
Budget Web Hosting
ColdFusion Hosting
Dedicated Servers
Domain Hosting
E-Commerce Hosting
Email Hosting
Free Web Hosting
Linux Web Hosting
Managed Hosting
Reseller Hosting
Small Business Hosting
Windows Web Hosting

<XMP>


deprecatedThis tag is officially deprecated. That means that this tag is being phased out, and it is strongly suggested that you not use it.
Copyright Idocs, Inc. Written by Miko Sullivan











About the NetVisits, Inc Network | Advertise
Developer Tutorials hosted by HostGator.
Copyright ©2007 NetVisits, Inc Network. All Rights Reserved. Privacy Policy.
Visit other NetVisits, Inc. sites:  
<XMP> indicates a block of text where all HTML tags are ignored. The only tag that is not ignored is </XMP>.

Here's how to do an anchor:
<XMP>
<A HREF="http://www.idocs.com">Cool Dude</A>
</XMP>

gives us

Here's how to do an anchor:

<A HREF="http://www.idocs.com">Cool Dude</A>

Notice in the code that we did not need to use character codes for > and <. For this reason <XMP> used to be popular for creating HTML pages that were about HTML. Unfortunately, <XMP> breaks some important rules of SGML (the parent language of HTML) and so is unpopular among browser creators. If you need to write about HTML, use <PRE ...> and <CODE> and use &lt; for < and &gt; for >. The example above can be expressed like this:

Here's how to do an anchor:

<PRE>
&#60;A HREF="http://www.idocs.com"&#62;Cool Dude&#60;/A&#62;
</PRE>

which gives us

Here's how to do an anchor:

<A HREF="http://www.idocs.com">Cool Dude</A>


Copyright Idocs, Inc. Written by Miko Sullivan











About the NetVisits, Inc Network | Advertise
Developer Tutorials hosted by HostGator.
Copyright ©2007 NetVisits, Inc Network. All Rights Reserved. Privacy Policy.
Visit other NetVisits, Inc. sites: