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