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