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