FULL STACK   ·   UI   ·   UX   ·   GRAPHICS   ·   DEVELOPER   ·   INSTRUCTOR

Adam Khoury

Donate funds to show love and support

Click the button below to donate funds securely online. You can use your PayPal account or a credit card.

Your donations help free up my time to produce more content and assist in covering server costs. It's also a great way to say thanks for the content!

Application Configuration

Adam will be adding options here soon.

Flat Icons HTML Code Symbols Discovery JavaScript

Published :
Author :
Adam Khoury

In this exercise we will show how writing just a few lines of JavaScript will allow you to render, browse and discover the entire set of HTML code symbols and icons.

<style> #icons > div{ display:inline-block; border:1px solid #AAA; padding:20px; text-align:center; } #icons > div > b{ display:block; color:#06C; font-size:50px; } </style> <div id="icons"> <script> /* set low/high range using the numbers below */ for(var i=9985; i < 10175; i++){ document.write("<div>"); document.write("&amp;#"+i+";"); document.write("<b>&#"+i+";</b>"); document.write("</div>"); } </script> </div>