HTML Character Entity References

HTML Character Entity References

Character entities allow you to display special characters in HTML.

Common Entities

  • & (& or &)
  • < (&lt; or &#60;)
  • © (&copy; or &#169;)
HTML
<p>Copyright &copy; 2025</p> <p>Use &lt;code&gt; for code</p>

Your Task

Create a webpage with:

  1. A paragraph showing a copyright notice with `<copy;>
  2. A paragraph with the text "HTML <code>" using `<lt;>
AI Learning Assistant

Live Preview