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