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