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