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