How to display HTML code on a web page?

Web pages are made up of HTML code, so if you post or write some HTML code in a web pages, a browser would generally consider them normal code. Instead of showing them as they are literally, they have become part of the underlying HTML structure of that page.

Now how to address this problem and display HTML code and HTML tags correctly in a web page as the page content?

The answer is, use HTML entities.

HTML entities are a way to encode special HTML characters such as < and > into literal characters that cannot be interpreted by browsers as HTML code. Refer to the most common HTML entities conversion table below:

  • ‘&’ (ampersand) becomes ‘&amp;
  • ‘"’ (double quote) becomes ‘&quot;
  • ”’ (single quote) becomes ‘&#039;
  • ‘<‘ (less than) becomes ‘&lt;
  • ‘>’ (greater than) becomes ‘&gt;

Therefore, to display HTML code as they are and show them to your web site visitors, write the special characters such as < and > in HTML entities. For example,

<h2>Beautiful town</h2>

Has to be written:

&lt;h2&gt;Beautiful town&lt;/h2&gt;

There are of course handy tools you can use to make these conversions much easier. PHP has a function, htmlentities() that accepts normal HTML code and converts them into HTML entities. You can also rely on online tools to make that happen.

15 thoughts on “How to display HTML code on a web page?”

  1. <h1>

    The time is:

    </h1>

    <br>

    <table bordercolor="#FFCC00" border="1">

    <tr>

    <td>

    <div id="clock" class="clock">

  2. you can put whatever code in here you want.
    or xml code, i guess whatever that has to get escaped with htmlentities will work.
    can’t ask my why tho, cause i don’t know. it just works. its voodoo.

  3. Pingback: PHP: setcookie() with HttpOnly Option to Prevent XSS (Cross Site Scripting) Attacks

  4. Pingback: Facebook Landing Pages « fruitfulcommunications

Comments are closed.

Scroll to Top