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