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