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