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