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