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