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