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