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