Answers for "how to add emojis html"

1

emojis in html

<head> 
	<meta charset="UTF-8">
</head>

<p>&#128512;</p> <!-- 128512 Will Be a Smiley Face -->
<p>&#128525;</p> <!-- 128512 Will Be Heart Eyes Face-->
<p>&#128151;</p> <!-- 128512 Will Be a Heart -->
Posted by: Guest on February-13-2021
1

html with emoji

<head>
<meta charset="UTF-8">
</head>
<body>

<h1>Your first Emoji with HTML</h1>

<p>&#128512;</p>

</body>
</html>
Posted by: Guest on July-19-2021

Browse Popular Code Answers by Language