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