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