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