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