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