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