- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML Emojis
HTML Emojis are used to enhance web content by adding expressive characters like faces, symbols, and objects. Emojis can be included in HTML by either directly using their Unicode characters or by referencing their HTML entity codes.
Syntax
You can add emojis in HTML in two ways:
- Directly use the emoji character.
- Use the emoji's HTML entity code.
Example Syntax:π
or 😊
Commonly Used Emojis
Below is a detailed table of commonly used emojis along with their HTML entity codes, descriptions, and example usage:
Adding Emojis to HTML
Example 1: Smiling Face
<!DOCTYPE html>
<html>
<head>
<title>Emoji Example</title>
</head>
<body>
<p>This is a smiling face: π or 😊</p>
</body>
</html>
Example 2: Multiple Emojis
<!DOCTYPE html>
<html>
<head>
<title>Emoji Example</title>
</head>
<body>
<p>Popular Emojis:</p>
<ul>
<li>π - Smiling Face</li>
<li>β€οΈ - Heart</li>
<li>π - Party Popper</li>
<li>π - Rocket</li>
</ul>
</body>
</html>
Summary
HTML Emojis bring life to web content, making it more engaging and expressive. They can be added directly or through their entity codes. Use the table above as a quick reference to include emojis in your HTML projects effectively.