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