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