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