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