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