How to Display HTML on a Website Without the Browser Rendering It
Write HTML Tutorials with Accurate Copy and Paste-able Code
There are a few ways to get around this. You could put your markup into a textarea box. You can use an xmp tag. Or you could use '& gt;' instead of >.
Each method will work, but each one also has some disadvantages.
The Simplest Method - A Textarea
If you've ever built a form in HTML, you know what a textarea is. It's a big box that the user can type text into.
It has another nifty use, though. If you put any text in between the opening and closing tag, that text appears inside the textarea as the default text. When the text is shown, the browser ignores all mark-up... it simply prints the text verbatim.
To utilize this method, simply create a textarea in your page. Be sure to set its width and height characteristics - preferably in a stylesheet. Then, type the mark-up that you want to appear in between the opening and closing tags. Now your user can read the mark-up exactly as you intended.
The drawback is, of course, that the user can type in the textarea and mess it up. A novice user might not realize what the nifty little box is... and delete all of your precious code. This is a simple method, indeed, but you may want to use something a little more foolproof.
Create an Example Using XMP
The xmp tag is designed for just this purpose. As the name might imply, it is designed to help you create an example.
When the browser reaches the opening tag, it stops rendering all HTML until it gets to a closing tag. Any other HTML inside the tags is simply ignored. This allows you to include your example code and have it be displayed properly.
What's the catch? Not every browser supports xmp. It's a deprecated tag, no longer in the "standard" version of HTML. Some browsers support it, but others don't. If you try to use an xmp tag to display some HTML and a user with an unsupported browser comes to your site, he or she won't be able to see the code.
This isn't necessarily a problem. But it is generally a good idea to make your website as compatible as possible with every browser.
Get Rid of < and > Altogether!
The most effective method, albeit most time consuming, is to get rid of the greater than and less than signs altogether. These are the magic little devices that tell the browser to render HTML. Without them, your markup isn't really markup.
There are many special characters that you can create using the ampersand (&) and a special code. In our case, we want to use '& gt' to replace > and '& lt;' (remove the spaces) to replace The drawback, of course, is that you have to go back through and change the < and > signs on your sample code... but only on your sample code. This can be a bit tedious, but it's not altogether impossible.
One solution is to copy and paste your sample code into a new text document. Then, do a Search and Replace for each greater than and less than. Just be careful not to do this in your actual HTML document... or you'll screw up everything.
Choose the Simplest, Most Effective Method
There are three methods to choose from. It all boils down to - what method give syou the outcome you need, with the least trouble.
The simplest method is probably the textarea. It renders perfectly in every browser. Then again, you have to worry about users messing up the code before they can copy and paste it.
Another simple method is the xmp tag. Problem? Some browsers ignore it altogether. It will also prevent your page from validating. A possibility, but not if you want to be as compliant as possible.
That leaves the last method - replace every > and < in your code example with the special escaped character. Your code will render perfectly, your users can't mess it up. All you have to do is put in a little extra leg work.
Published by B. Rock
I'm a recent graduate, a newly wed, and a (no longer first year) teacher. I teach HS Social Studies in a New Jersey city. I graduated from the Rutgers Grad School of Ed in May of 2007. In July '07, I... View profile
- Guide on How to Write an Employee ManualArticle on how to write an employee manual
- 5 Tips on How to Stay Motivated to WriteGuide to help freelance writers to help stay motivated to write
- How to Write SongsUsing basic music theory knowledge about scales and progressions, songwriters will find many new chords to write songs with. Because they come from the same key they will have notes in common and sound good together....
- 10 Tips on How to Write a Consignment Agreement10 Tips On How to Write a Consignment Agreement
- Three Ways to Display Sample HTML in a Web Browser
- How to Encrypt a Webpage So Nobody Can Copy Your Code
- Styling CSS and HTML Unordered Lists
- Give Your Mother a Precious Gift for Mother's Day -- Write Her a Letter!
- How to Write Articles and Easily Make Money with Them
- How to Write a Script Treatment
- No Time to Write?
- There are three different methods to tell your browser to ignore HTML and just display it as-is.
- Creating a textarea and filling it with markup is simple, but your users might mess it up.
- You can use special escape characters to replace the >< signs, but it's a bit of work.





4 Comments
Post a Comment& l t; instead of <
& g t; instead of >
& q u o t; instead of "
Exemple:
& l t;input type=& q u o t;radio& q u o t; /& g t; Â Â instead
of   <input type="radio" />
& l t; instead of <
& g t; instead of >
& q u o t; instead of "
Exemple:
& l t;input type=& q u o t;radio& q u o t; /& g t; instead of
< instead of <
> instead of >
" instead of "
Exemple:
<input type="radio" /> instead of
Thanks! I desperately needed this! I tried to give you 5 stars but my mouse stuck and you only 4. Sorry about that! It is a great article.