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