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