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