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