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