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