Course Content
HTML Forms
HTML forms are an essential part of web development and provide a way for users to input and submit data to a server. Forms allow users to enter data such as text, numbers, checkboxes, radio buttons, and more. When a user submits a form, the data is typically sent to a server for further processing.
0/6
HTML Graphics
HTML provides various ways to incorporate graphics into web pages.
0/2
HTML Media
HTML provides built-in support for embedding and displaying various types of media content on web pages.
0/5
HTML APIs
HTML APIs, also known as browser APIs or web APIs, are a set of interfaces and methods provided by web browsers to interact with and manipulate web content, access device features, and perform various tasks. These APIs are implemented in JavaScript and are accessible to web developers when creating web applications. Here are some commonly used HTML APIs:
0/5
HTML Examples
Creating a Simple Web Page, Adding Links and Images and more
0/4
HTML5 for Free | HTML5 – Unleashing the Potential of Web Development
About Lesson

HTML symbols refer to special characters and symbols that can be used in HTML by using their corresponding entity codes or numeric character references. These symbols are useful for displaying characters that may not be readily available on a standard keyboard or characters with special meanings.

Here are some commonly used HTML symbols and their entity codes:

  1. < – Less-than symbol: &lt;
  2. > – Greater-than symbol: &gt;
  3. & – Ampersand symbol: &amp;
  4. " – Double quotation mark: &quot;
  5. ' – Apostrophe: &apos;
  6. Non-breaking space: &nbsp;
  7. © – Copyright symbol: &copy;
  8. ® – Registered trademark symbol: &reg;
  9. ™ – Trademark symbol: &trade;
  10. € – Euro currency symbol: &euro;
  11. ° – Degree symbol: &deg;
  12. × – Multiplication symbol: &times;
  13. ÷ – Division symbol: &divide;
  14. ℃ – Celsius symbol: &deg;C
  15. ℉ – Fahrenheit symbol: &deg;F
  16. ← – Left arrow: &larr;
  17. → – Right arrow: &rarr;
  18. ↑ – Up arrow: &uarr;
  19. ↓ – Down arrow: &darr;
  20. ∞ – Infinity symbol: &infin;

These are just a few examples of HTML symbols that can be used in your HTML code. By using the corresponding entity codes or numeric character references, you can display these symbols correctly in the browser.

It’s important to note that HTML symbols are case-sensitive, so you should use the correct case when writing the entity codes. Additionally, you can also use the decimal or hexadecimal numeric character references to represent specific symbols.

When using HTML symbols, ensure that you’re using the appropriate entity code or numeric character reference for the symbol you want to display, and be consistent in using symbols throughout your HTML code to maintain clarity and readability.

Join the conversation