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