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