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