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