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