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