Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
172 views
in Technique[技术] by (71.8m points)

html - How to get the sound icon from https://www.larousse.fr?

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

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

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...