Use on the webTotal Use [ 6618 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1d8f9a0bffb92d0b72e4caf5c6f2b339?family=Protipo+Icons" 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/1d8f9a0bffb92d0b72e4caf5c6f2b339?family=Protipo+Icons);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Protipo Icons";
src: url("https://db.onlinewebfonts.com/t/1d8f9a0bffb92d0b72e4caf5c6f2b339.eot");
src: url("https://db.onlinewebfonts.com/t/1d8f9a0bffb92d0b72e4caf5c6f2b339.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1d8f9a0bffb92d0b72e4caf5c6f2b339.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1d8f9a0bffb92d0b72e4caf5c6f2b339.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1d8f9a0bffb92d0b72e4caf5c6f2b339.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1d8f9a0bffb92d0b72e4caf5c6f2b339.svg#Protipo Icons")format("svg");
}
2CSS rules to specify fonts
font-family: "Protipo Icons";