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