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