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