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