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