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