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