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