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