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