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