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