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