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