How can I integrate the catalog of font icons awebsome on my page and when the user selects one can know the tag of the icon that the user selected
How can I integrate the catalog of font icons awebsome on my page and when the user selects one can know the tag of the icon that the user selected
The only thing you should have <link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
in <head></head>
and then see the catalog of icons and copy and paste from here Here
for example
<i class="fa fa-address-book-o" aria-hidden="true"></i>
if you want to do it with javascript just use innerHtml("<i class='fa fa-address-book-o' aria-hidden='true'></i>");