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