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