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