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