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