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