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