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