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