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