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