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