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