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