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