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