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