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