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