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