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