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