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