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