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