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