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