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