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