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