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