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