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