Use on the webTotal Use [ 5781 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/046ee08d6b9a9de07b62efb512d8534d?family=EucerinIcons" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/046ee08d6b9a9de07b62efb512d8534d?family=EucerinIcons);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "EucerinIcons";
src: url("https://db.onlinewebfonts.com/t/046ee08d6b9a9de07b62efb512d8534d.eot");
src: url("https://db.onlinewebfonts.com/t/046ee08d6b9a9de07b62efb512d8534d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/046ee08d6b9a9de07b62efb512d8534d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/046ee08d6b9a9de07b62efb512d8534d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/046ee08d6b9a9de07b62efb512d8534d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/046ee08d6b9a9de07b62efb512d8534d.svg#EucerinIcons")format("svg");
}
2CSS rules to specify fonts
font-family: "EucerinIcons";