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