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