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