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