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