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