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