Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to download as png the sound icon from this url.

enter image description here

I inspected the CSS and it shows that

.lienson:after {
        font-family: "fontello";
        font-size: 20px;
        font-weight: normal;
        font-style: normal;
        display: inline;
        content: 'e82c';
        color: #ff4b54;
        text-decoration:none;
        cursor:pointer;     /*gestion v.audio*/
}

@font-face {
  font-family: 'fontello';
  src: url('./../fonts/fontello.eot?58255341');
  src: url('./../fonts/fontello.eot?58255341#iefix') format('embedded-opentype'),
       url('./../fonts/fontello.woff?58255341') format('woff'),
       url('./../fonts/fontello.ttf?58255341') format('truetype'),
       url('./../fonts/fontello.svg?58255341#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fontello {
    font-family: "fontello";
}

I guess the link to download is ./../fonts/fontello.svg?58255341#fontello but could not figure out what is the full link?

Could you please elaborate on how to get this icon?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
171 views
Welcome To Ask or Share your Answers For Others

1 Answer

It's not a png, it's a webfont.

So, either you odwnload it directly from the url, which i wouldn't recommend because it would potentially raise copyright issues. FYI in this case the font url is relative to the css file url.

Or you make a screenshot of the element, which raise similar issues oif you use it.

Or you search for that font online, which could be a fail, since fontello is a font building tool, and the font you're searching for could simply not exist in the public domain.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...