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