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