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