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