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