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