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