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