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