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