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