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