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