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