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