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