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