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