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