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