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