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