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