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