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