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