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