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