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