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