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