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