Reputation: 225
I would to add my Icon from another link to HTML element, and its clickable.
The icon associated with class, class name icon.
<a href="#" class="icon" title="shareStatus"></a>
Note: I need to take icon from another source.
Your suggestion will be advisable
Upvotes: 1
Views: 1294
Reputation: 43564
You can use a solution like the following, using a background image:
.icon {
content:"";
width:50px;
height:50px;
background:url('http://placehold.it/50x50');
display:inline-block;
border-radius:50%;
}
<a href="#" class="icon" title="shareStatus"></a>
Upvotes: 1