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