My Fav HTML Entities I Have Used

2022-Jul-18

Home

email Feedback About This Page

Pointers

Sports

Animals/Wildlife

Playing Cards

Veggies/Fruit

Circles

Other

Special Markup

class="pics25"

.pics25{
font-size:25px;
}
  1. 🔽  🔽
  2. ▶  ▶
  3. ⬇️  ⬇️
  4. <  &lt;
  5. >  &gt;
  6. ←  &larr;
  7. →  &rarr;
  8. ↑  &uarr;
  9. ↓  &darr;
  10. 🔼  &#128316;
  11. 🚴  &#128692;
  12. 🏁  &#127937;
  13. 🏆  &#127942;
  14. 📣  &#128227;
  15. Person Short Hair Running: Light Skin Tone    🏃🏻    &#127939;&#127995;
  16. Person Short Hair Running: Medium Skin Tone    🏃🏽    &#127939;&#127997;
  17. Person Short Hair Running: Dark Skin Tone    🏃🏿    &#127939;&#127999;
  18. Person Long Hair Running: Light Skin Tone    🏃🏻‍♀️    &#127939;&#127995;&#8205;&#9792;&#65039;
  19. Person Long Hair Running: Medium Skin Tone    🏃🏽‍♀️    &#127939;&#127997;&#8205;&#9792;&#65039;
  20. Person Long Hair Running: Dark Skin Tone    🏃🏿‍♀️    &#127939;&#127999;&#8205;&#9792;&#65039;
  21. Game Die    🎲    &#127922;
  22. Sweat Droplets    💦    &#128166;
  23. Basketball    🏀    &#127936;
  24. Ice Hockey    🏒    &#127954;
  25. Black Circle    ⚫    &#9899;
  26. Red Circle    🔴    &#128308;
  27. Blue Circle    🔵    &#128309;
  28. White Circle    ⚪    &#9898;
  29. Orange Circle    🟠    &#128992;
  30. Yellow Circle    🟡    &#128993;
  31. Green Circle    🟢    &#128994;
  32. Purple Circle    🟣    &#128995;
  33. Brown Circle    🟤    &#128996;
  34. 💨  &#128168;
  35. 📚  &#128218;
  36. 📝  &#128221;
  37. 😲  &#128562;
  38. 🎈  &#127880;
  39. 🏫  &#127979;
  40. 📎  &#128206;
  41. 🎓  &#127891;
  42. Hamburger    ≡  &equiv;
  43. 3 stacked dots    ⋮    &vellip;
  44. faucet in blue square    🚰    &#128688;
  45. brown hand pointing down    👇🏽    &#128071;&#127997;
  46. yellow hand pointing down    👇    &#128071;
  47. black checkmark    ✓    &#10003;
    .greenchkmrk{
        color: green;
    }
    green checkmark       <span class="greenchkmrk">&#10003;</span>
  48. badger    🦡    &#129441;
  49. bat    🦇    &#129415;
  50. bear    🐻    &#128059;
  51. boar    🐗    &#128023;
  52. chipmunk    🐿️    &#128063;&#65039;
  53. deer    🦌    &#129420;
  54. fox    🦊    &#129418;
  55. otter    🦦    &#129446;
  56. rabbit    🐇    &#128007;
  57. raccoon    🦝    &#129437;
  58. skunk    🦨    &#129448;
  59. wolf    🐺    &#128058;
  60. black spade suit    ♠    &spades;
  61. black club suit    ♣    &clubs;
  62. black heart suit    ♥    &hearts;
    black diamonds suit    ♦    &diams;

    .redsuit{
        color: red;
    }
    red heart suit       <span class="redsuit">&hearts;</span>

    red diamond suit       <span class="redsuit">&diams;</span>
  63. tomato    🍅    &#127813;
  64. apple    🍎    &#127822;
  65. pumpkin    🎃    &#127875;
  66. to have <mark> tag to have white text with a blue background instead of default yellow

    .mrkblue{
        background-color: dodgerblue;
        color: white;
        font-family: sans-serif;
        padding: 3px;
        font-weight: bold;
    }

    ALT
  67. styling Save button of File Explorer and can be used for other similar buttons
    .clsBttn{
        background-color:gainsboro;
        color:black;
        font-weight:normal;
        border:3px solid cornflowerblue; /* no: blue aquamarine yes: cornflowerblue */
        padding:4px 25px;
    }

    Save
  68. bold, large text with red background

    .bigXred{
        font-weight: bold;
        font-size: large;
        background-color: red;
        color: white;
        padding:4px 14px;
    }

    x