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