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