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