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