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