How do you add emojis to HTML pages?

Emojis are charset UTF-8 code, so you need to specify this in the meta tag, in the head section of the webpage before you can start adding in emojis. Once you have specified the utf-8, you can begin adding emojis by using

<meta charset="UTF-8">

The website https://unicode.org/emoji/charts/full-emoji-list.html has all the codes needed to add in emojis into your webpage.

Its pretty easy to add emojis to a webpage once you know what code is used for a specific emoji.