Quick start

Get started by including emojicloud's production-ready CSS via CDN. See it in practice with this CodePen demo.

1. Create a new index.html file in your project root.

<!doctype html>
<html lang="en">
<head>

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Emojicloud - demo</title>
</head>
<body>

</body>
</html>

2. Include emojicloud's CSS via CDN and add your first emoji

Place the <link> tag in the <head> of your index.html file. you can find a full list of emojis here

<!doctype html>
<html lang="en">
<head>

    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Emojicloud - demo</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/alohe/emojicloud/emojicloud.css">
</head>
<body>
<h1>
<i class="emoji-waving-hand"></i> Hi, Mom!
</h1>
</body>
</html>

3. Hi, Mom!

Open the page in your browser of choice and see your first emoji!


CDN link

As a reference, here is the primary CDN link.

https://cdn.jsdelivr.net/gh/alohe/emojicloud/emojicloud.css