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