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