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