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