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