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