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