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