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