Link to home
Start Free TrialLog in
Avatar of tambde
tambde

asked on

How to put keywords in the html pages

Hi,
  i want to display various html tags in the html page.
but when i try  to display the html tags in the html page those html tags get interpreted by the browser and it messes all my page setting so my question is how to remove the meaning of the html keywords and display it in the html page.
Avatar of arjunram
arjunram

Hi,
 You have to use it in the following manner.

 <HTML TAG NAME>

This should solve your problem.

Here is a small snippet of code.

<pre>  &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"&gt;
  &lt;HTML&gt;
  &lt;HEAD&gt;
  &lt;TITLE&gt;A study of population dynamics&lt;/TITLE&gt;
  <i>... other head elements</i>
  &lt;/HEAD&gt;
  &lt;BODY&gt;
  <i>... document body</i>
  &lt;/BODY&gt;
  &lt;/HTML&gt;</pre>

If this still does not help, visit http://www.w3.org/TR/REC-html32.html and view the source of the HTML file.

ArjunR
ASKER CERTIFIED SOLUTION
Avatar of arjunram
arjunram

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tambde

ASKER

Thanks ArjunR,
Really good answer.