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