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