index.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Twitter Emoji (Twemoji)</title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <style>
  9. body {
  10. font-family: sans-serif;
  11. font-size: 16px;
  12. text-align: center;
  13. }
  14. h1 {
  15. font-size: 36px;
  16. color: #600;
  17. }
  18. h1 .emoji {
  19. width: 36px;
  20. height: 36px;
  21. margin-bottom: -8px;
  22. }
  23. a, a:visited {
  24. color: #777;
  25. }
  26. a .emoji {
  27. border: 0;
  28. width: 16px;
  29. height: 16px;
  30. margin-bottom: -2px;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <h1>Twem&#x2764;ji</h1>
  36. <p>Sharing Twitter emoji <a href="v/latest/preview-svg.html">everywhere</a></p>
  37. <p><strong>Version 14.0 Is Out!</strong></p>
  38. <p><a href="https://github.com/twitter/twemoji">Grab me on GitHub &#x2197;</a></p>
  39. <p>
  40. <a href="https://twitter.com/intent/tweet?button_hashtag=TwemojiParty&text=thank%20you%20Twitter%20for%20the%20emoji" class="twitter-hashtag-button" data-size="large" data-related="twitteross" data-url="http://twitter.github.io/twemoji/">Tweet #TwemojiParty</a>
  41. <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
  42. </p>
  43. <blockquote class="twitter-tweet" lang="en" align="center"><p>today we are open sourcing our emoji to share with everyone <a href="https://twitter.com/hashtag/twemojiparty?src=hash">#twemojiparty</a>          ✨ <a href="https://t.co/zkXqMXEkOT">https://t.co/zkXqMXEkOT</a></p>&mdash; Twitter Open Source (@TwitterOSS) <a href="https://twitter.com/TwitterOSS/status/530496382885720064">November 6, 2014</a></blockquote>
  44. <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
  45. <p>Code licensed under MIT. Graphics licensed under CC-BY</p>
  46. <script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js"></script>
  47. <script>
  48. // I \u2764 emoji!
  49. twemoji.parse(document.body);
  50. </script>
  51. </body>
  52. </html>