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