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