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