Example
<!DOCTYPE html> <html> <meta charset=”UTF-8″> <body> <h1>My First Emoji</h1> <p>😀</p> </body> </html> |
Given that emojis are characters, they can be copied, displayed, and formatted just like any other character in HTML.
Example
<!DOCTYPE html> <html> <meta charset=”UTF-8″> <body> <h1>Sized Emojis</h1> <p style=”font-size:48px”> 😀 😄 😍 💗 </p> </body> </html> |