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