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